What this text to binary converter does
Everything a computer stores — this sentence included — is ultimately a sequence of bits. A text to binary converter makes that visible: it encodes your text as UTF-8 bytes and prints each byte as eight binary digits. The reverse mode reads groups of bits and decodes them back into characters, which is handy for classroom exercises, puzzle hunts and CTF challenges where messages are hidden in binary.
Because the tool works at the byte level with real UTF-8, it handles every character correctly — including emoji and non-Latin scripts that simpler ASCII-only converters mangle.
How to convert text to binary
- Choose the direction: Text → Binary or Binary → Text.
- Type or paste your input.
- Click Convert and copy the result.
A worked example
The word Hi is two ASCII characters: H is decimal 72 and i is decimal 105. In binary those bytes are 01001000 and 01101001 — exactly what the converter outputs. Try decoding that pair in the other direction to confirm the round trip, then compare the same text in the Base64 converter to see how different encodings represent identical bytes.