Binary 转 Hex
把 Binary 值转成 Hex,做 register dump、位掩码、抓包分析、协议调试都用得上,全程在浏览器里完成。
Pure binary digits. Whitespace separators are ignored.
Uppercase hexadecimal output.
Convert binary to hexadecimal — the most compact way to represent byte values. Each hex digit corresponds to four binary bits, so once you internalise the four-bit groups, reading dumps becomes second nature.
Do I need to pad the binary to a multiple of four bits?
No. The tool parses the value first, then formats it in hex.
Why is hex output uppercase?
Uppercase hex is conventional in protocol documentation and easier to read at a glance.