What Base64 stores
Base64 represents binary data with printable characters. It is common in tokens, email bodies, data URLs, and protocol examples where raw bytes need a text-safe form.
Encoding utility
Convert UTF-8 text to Base64, decode Base64 back to text, and inspect the bytes behind each transformation without sending data to a server.
Encode plain text into Base64 output.
Waiting for input.
Inspect UTF-8 source bytes before Base64 encoding.
| Offset | Hex | Decimal | Binary | ASCII |
|---|---|---|---|---|
| Enter text or Base64 to inspect bytes. | ||||
Base64 represents binary data with printable characters. It is common in tokens, email bodies, data URLs, and protocol examples where raw bytes need a text-safe form.
The equals sign fills the final group when the source byte count is not divisible by three. Some URL-safe formats remove padding and restore it during decoding.
Text is encoded into UTF-8 bytes before Base64 conversion. The byte inspector shows the exact hexadecimal and binary values that the encoder sees.
Usage guide
It converts UTF-8 text to Base64, decodes Base64 back to text, and exposes the bytes that make the encoded value possible.
Paste text, switch modes, try URL-safe output, omit padding, and inspect the byte table to see how characters become binary data.
Use it for data URLs, API examples, encoded configuration values, token segments, or debugging whether a Base64 string contains valid UTF-8 text.