Text to Binary Converter
The binary converter translates UTF-8 text into binary, hexadecimal, octal or decimal byte values and converts any of those representations back into text. It is useful for teaching character encoding and for decoding values found in logs.
Your result will appear here.
Not sure where to start? Use Load example.
Results update automatically and are calculated on your device. Nothing you type is sent to a server.
Runs in your browser. Processing happens entirely in your browser. Nothing you enter is sent to Delimiter.live.
How to use the Text to Binary Converter
- Type or paste your text, or paste the numeric values you want to decode.
- Choose the direction and the number base.
- Pick a separator that matches the format you are working with.
- Copy the result.
Example
Hi
Binary: 01001000 01101001 Hex: 48 69
Common use cases
- Teaching or learning how characters are stored as bytes.
- Decoding a hex or binary string found in a log or a protocol dump.
- Producing byte values to paste into an embedded-systems test.
Limitations and things to watch for
- Text is encoded as UTF-8, so characters outside ASCII produce more than one byte. The euro sign, for example, is three bytes. This matches how text is stored on disk and transmitted over a network.
- When decoding, values must be valid bytes (0–255) in the chosen base, and the resulting byte sequence must be valid UTF-8; otherwise a clear error is shown rather than mangled output.
- Binary is not encryption or encoding for secrecy — anyone can convert it straight back.