Paste text or binary
Enter UTF-8 text to encode, or 0/1 bits (spaces optional) to decode.
Convert binary bit strings to UTF-8 text and text back to spaced 8-bit binary groups. Free online tool — no sign-up. Runs locally in your browser.
Loading tool…
Follow these steps for a clear answer.
Enter UTF-8 text to encode, or 0/1 bits (spaces optional) to decode.
Bits are grouped as 8-bit UTF-8 bytes.
Use Copy next to Result for homework, protocols, or debugging.
Version 1.0.0 · Last reviewed 2026-07-29
encode: UTF-8 bytes → 8-bit groups; decode: bit groups → UTF-8 bytesConvert binary bit strings to readable text and the other way around. Bits are treated as UTF-8 bytes (8 bits per byte).
Text: Hi
Binary:
01001000 01101001
| Char | Dec | Binary |
|---|---|---|
| H | 72 | 01001000 |
| i | 105 | 01101001 |
Key distinctions behind the tool.
You can paste continuous bits or space-separated 8-bit groups. Spaces are ignored on decode.
Yes. Text is encoded/decoded as UTF-8 bytes, so characters outside ASCII work when the bit length is a multiple of 8.
Decode requires a bit length divisible by 8. Pad or fix the input first.