Base64 Encoder/Decoder

Encode or decode text to/from Base64 format.

What is Base64?

Base64 is a binary-to-text encoding scheme that represents binary data in an ASCII string format. It's commonly used to encode data that needs to be stored and transferred over media designed to deal with text.

Common Uses:

  • Embedding images in HTML/CSS
  • Encoding data in URLs
  • Email attachments (MIME)
  • Storing complex data in XML or JSON
  • Data transmission over text-based protocols