Base64 Encoder / Decoder

Base64 Encoder / Decoder

Encode text into Base64 or turn Base64 back into readable text in a click.

Opens in a full-screen window. Your data stays on your device — nothing is uploaded or stored.

What is Base64?

Base64 is a text format that represents binary data using 64 safe characters. It is everywhere: API tokens, email attachments, embedded images, and authentication headers all lean on it.

This tool encodes plain text into Base64 and decodes Base64 back into readable text. Both directions work instantly, and the result is safe to copy anywhere.

How to use this tool

  1. Type or paste your text.
  2. Click Encode to turn it into Base64.
  3. Click Decode to turn Base64 back into text.
  4. Use the swap button to move the output back into the input.

When to use Base64

  • Sharing data between systems that only accept text.
  • Embedding small images inside HTML or CSS files.
  • Encoding binary data in JSON payloads.

An important reminder

Base64 is not encryption. It is easy for anyone to reverse, so do not use it to hide passwords or personal data. Use it for transport and compatibility, and keep real secrets behind proper encryption.

Frequently Asked Questions