Encode text to Base64 or decode Base64 strings back to plaintext
Base64 encodes binary data as printable ASCII text using 64 characters (A–Z, a–z, 0–9, +, /). Every 3 bytes of input become 4 characters of output, increasing size by ~33%.
Base64 is encoding, not encryption. Anyone can decode it instantly — never use it to protect sensitive data.