Binary → Hex 변환
Binary 값을 Hex로 변환합니다. 레지스터 덤프, 비트마스크, 패킷 분석, 프로토콜 디버깅에 적합하며 처리는 브라우저 안에서 끝납니다.
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.