🔡
Base64 Encoder
Encode & decode Base64 strings
About Base64 Encoder
Base64 converts binary data or text into a string of printable ASCII characters. You run into it constantly: HTTP Basic Auth headers, data URIs for embedded images, JWT payload encoding, binary data in JSON, email attachments.
Encode any text to Base64 or decode Base64 back to readable text. Full UTF-8 support handles accented characters, emoji, and non-Latin scripts correctly — not just ASCII.
Runs in the browser. No data leaves the page.
Common Use Cases
- →Encoding credentials for HTTP Basic Authentication headers
- →Decoding Base64 values found in JWT payloads or API responses
- →Embedding small images as Base64 data URIs in CSS
- →Passing binary data through text-only channels