Đổi Binary sang Hex
Đổi giá trị Binary sang Hex ngay tại trình duyệt — dùng cho register dump, bitmask, packet inspection và debug giao thức.
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.