Base64 encoder & decoder
64baser is a tool for text or binary to Base64 and vice-versa conversion
Encode a text to Base64 by copy & paste
The text will be encoded to UTF8 and then converted to Base64. If you want a different encoding, upload rather a file with your own encoding, or any other binary file
Paste a text to encode:
How to use 64Baser
- Paste text on the homepage and press Encode to get a Base64 string
- Or upload any file to encode its raw bytes
- Need to go the other way? Use the Decode page
- Copy or download the result when done — see the full help guide for all options
What is Base64 encoding?
Base64 converts binary data into plain ASCII text using a 64-character alphabet — uppercase and lowercase letters, digits, plus sign, and forward slash. It was originally designed for email attachments in the late 1980s, but today you'll find it in data URIs, JWT tokens, HTTP Basic authentication headers, and PEM certificates. The trade-off is a roughly 33% size increase — three bytes of input always produce four characters of output. Read the full article on Base64 encoding for the algorithm details, a worked example, and a comparison with Base16 and Base32.