Skip to content

Text ↔ Binary Converter

Convert text to its binary representation and back, one 8-bit group per byte.

Input

Output

Text as bits

Each byte becomes eight binary digits, grouped with a space so the boundaries are visible. Text is encoded as UTF-8 first, so a Latin letter is one group and a Hangul syllable is three.

Frequently asked questions

Why does one Korean character produce three groups?

UTF-8 encodes Hangul syllables in three bytes, and each byte becomes one group of eight bits.

Related tools