Base64 Encode/Decode

Turn text into Base64, or decode Base64 back to plain text.

Input
Output

                        

About Base64 Encode/Decode

Base64 turns binary data into plain text characters. It is not encryption. Anyone can decode it. Use it when a system only accepts text.

Common Use Cases:

  • Decoding a Base64 string you received
  • Encoding text for a data URI or API
  • Checking what is inside an encoded value

Developers: see the CI/CD & pipeline guide. More tutorials: guides hub · by Nalla.

Frequently Asked Questions

No. It is encoding. Anyone with the string can decode it instantly.

Encoding adds about 33% size. Three bytes become four characters.

No. Encode and decode happen in your browser.