Encoding & Utility Tools

Base64 Encoder & Decoder

Encode text or files to Base64, URL-safe Base64 (RFC 4648 Β§5), or MIME-chunked Base64. Decode Base64 strings back to plaintext or binary. Image files are previewed directly. All operations use the browser's native btoa() / atob() and FileReader APIs.

All processing happens locally in your browser. No data is uploaded.
Variant:
Input Text
Base64 Output
Output will appear here…
Base64 Variant Reference
VariantCharsetPaddingUse Case
Standard (RFC 4648)A–Z a–z 0–9 + /= paddingEmail, HTTP bodies, general encoding
URL-Safe (Β§5)A–Z a–z 0–9 - _No paddingJWT tokens, URL parameters, filenames
MIMEA–Z a–z 0–9 + /= paddingEmail attachments, multipart bodies (76-char lines)