Base64 Encoder / Decoder

Encode and decode Base64

What is Base64?

Base64 is a way to encode binary data as text. It is widely used for:

  • Embedding images directly in CSS and HTML files
  • Sending data in APIs
  • Storing files in databases
  • Email (MIME)

Security note: Base64 is not encryption, just encoding. Do not use it to protect sensitive data.