Text to Binary Converter — UTF-8 Safe

Convert text to binary (one byte per character, UTF-8 encoded), or decode binary back to text. Choose how the binary is separated. Live update.

Runs in your browser.

What text-to-binary means

Computers store all text as bytes — sequences of 1s and 0s. Each character in your text corresponds to one or more bytes; this tool reveals exactly which bytes. The conversion uses UTF-8 — the modern web standard encoding — which represents ASCII characters as a single byte (8 bits) and non-ASCII characters (emojis, accents, CJK scripts) as 2-4 bytes.

Example: A01000001 (decimal 65). !00100001. The emoji 11100010 10011101 10100100 (3 bytes).

Common uses

Tips

FAQs

Why are emojis multiple bytes?

UTF-8 uses more bytes for characters above the ASCII range. Emojis are above the Basic Multilingual Plane and use 3-4 bytes each.

Is anything uploaded?

No.

Can it decode arbitrary binary?

Yes — as long as the input bytes are valid UTF-8.

Related