Binary 转 Text
把 Binary 值转成 Text,做 register dump、位掩码、抓包分析、协议调试都用得上,全程在浏览器里完成。
Each byte uses 8 bits. Spaces between groups are optional.
Decoded UTF-8 text.
Decode binary into the text it encodes. The converter expects UTF-8 byte sequences. Useful for inspecting protocol payloads, educational exercises, or recovering text from binary dumps.
Can I decode ASCII-only binary?
Yes. ASCII is a subset of UTF-8, so 7-bit ASCII byte sequences decode the same way.
Why does my output show replacement characters?
The bytes form an invalid UTF-8 sequence. Verify the byte boundaries or source encoding.