Base64 Encoder & Decoder

Encode text to Base64 or decode Base64 back to text instantly.

Plain Text
Base64

API Usage

Encode and decode Base64 programmatically:

# Encode
curl "https://ai.doxx.lat/api/encode?text=Hello%20World"

# Decode
curl "https://ai.doxx.lat/api/encode?b64=SGVsbG8gV29ybGQ%3D"

No API key. CORS enabled. Unlimited requests.

What is Base64?

Base64 is a binary-to-text encoding scheme that represents binary data in an ASCII string format. It is widely used for encoding data in emails (MIME), embedding images in HTML/CSS (data URIs), encoding credentials in HTTP Basic Authentication, and transmitting binary data through text-only channels like JSON APIs.