Text 转 Binary
把 Text 值转成 Binary,做 register dump、位掩码、抓包分析、协议调试都用得上,全程在浏览器里完成。
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.