Base64 Encoder

Encode text to Base64 format.

0 characters
0 characters

Base64 turns any data into text using just 64 characters: A-Z, a-z, 0-9, +, /. The = signs are padding.

Why Base64 Exists

Use CaseWhat's Happening
Data URLsImage data embedded in HTML/CSS
Basic Auth"user:pass" encoded in headers
JWTsPayload as URL-safe text
Email attachmentsBinary files as text

Heads Up

Base64 is ENCODING, not ENCRYPTION. It provides zero security. Anyone can decode it instantly.