๐Ÿ” Base64 Encoder/Decoder

Encode text or files to Base64, or decode Base64 strings back to text. All processing happens in your browser.

Encode to Base64

Or encode a file:

Base64 Result:

Decode from Base64

Decoded Result:

What is Base64?

Base64 is an encoding scheme that converts binary data into ASCII text. It's commonly used to:

  • Embed images in HTML/CSS (data URLs)
  • Send binary data over text-based protocols (email, JSON)
  • Encode authentication tokens
  • Store binary data in databases or configuration files

Note: Base64 is encoding, not encryption. It doesn't provide security!