Base64 Encoder/Decoder

Convert text to and from Base64 encoding

Convert text to Base64 encoding

About Base64 Encoding

Base64 is a binary-to-text encoding scheme that represents binary data in an ASCII string format by translating it into a radix-64 representation. It's commonly used when there's a need to encode binary data, especially when that data needs to be stored and transferred over media that are designed to deal with text.

Common uses for Base64 encoding include:

  • Encoding email attachments (MIME)
  • Storing complex data in XML or JSON
  • Embedding image data directly in HTML or CSS
  • Transferring data in URLs