Text to Binary
Encode any UTF-8 text into space-separated 8-bit binary bytes for puzzles and low-level demos.
Any UTF-8 text including emoji and Vietnamese characters.
Space-separated 8-bit bytes.
Encode any UTF-8 text into binary, one space-separated byte per character. Great for puzzles, low-level demos, or inspecting how non-ASCII characters expand into multiple bytes.
Is the encoding configurable?
The tool always uses UTF-8, the universal default for the modern web.
How do I get binary without spaces?
Copy the result and replace spaces with an empty string in your editor — the decoder still accepts spaceless input as long as the length is a multiple of 8.