Base64 Encoder/Decoder

Encode and decode Base64 strings instantly. Perfect for encoding data for URLs, emails, and API requests.

Input Text

Base64 Output

Base64 output will appear here

About Base64

What is Base64?

Base64 is a binary-to-text encoding scheme that represents binary data in an ASCII string format. It's commonly used for encoding data in URLs, emails, and XML documents.

Common Use Cases

  • • Embedding images in HTML/CSS
  • • Encoding binary data in JSON
  • • Transmitting data in URLs
  • • Email attachments

Examples

Text to Base64

Input:
Hello World
Output:
SGVsbG8gV29ybGQ=

Base64 to Text

Input:
SGVsbG8gV29ybGQ=
Output:
Hello World