Back to Tools
🔤

Base64 Encoder/Decoder

Encode text to Base64 or decode Base64 strings instantly

⚡Instant

Real-time conversion

🔄Bidirectional

Encode & decode

🔒Private

Client-side only

â„šī¸ What is Base64?

Base64 is an encoding scheme that converts binary data into ASCII text format. It's commonly used for:

  • Encoding images and files in Discord webhooks
  • Storing binary data in text-based formats (JSON, XML)
  • Transmitting data over systems that only support ASCII
  • Encoding authentication credentials

Example: Encode

Input:

Hello Discord!

Output:

SGVsbG8gRGlzY29yZCE=

Example: Decode

Input:

SGVsbG8gRGlzY29yZCE=

Output:

Hello Discord!