About Hex Converter
Reading bits is essential when validating bitmasks, dissecting protocol fields, or teaching how bytes decompose. The tool keeps nibble alignment so you can map hex digits to bit groups visually.
Awaiting input
Every interpretation derived from the same input.
Enter a hex value above to see every conversion.
Reading bits is essential when validating bitmasks, dissecting protocol fields, or teaching how bytes decompose. The tool keeps nibble alignment so you can map hex digits to bit groups visually.
Replace each hex digit by its 4-bit binary equivalent: 0 → 0000, F → 1111, A → 1010. Bits are grouped in fours to mirror the hex layout.
Expand any hex value into its bit-level binary representation. Each hex digit becomes four binary bits, grouped in nibbles for easy reading.
1A3F.Reading bits is essential when validating bitmasks, dissecting protocol fields, or teaching how bytes decompose. The tool keeps nibble alignment so you can map hex digits to bit groups visually.
Replace each hex digit by its 4-bit binary equivalent: 0 → 0000, F → 1111, A → 1010. Bits are grouped in fours to mirror the hex layout.
Need other directions? Try the Decimal to Hex, Binary to Hex, or Text to Binary tools.
What are nibbles?
A nibble is a group of four bits — the exact width of one hex digit. Grouping by nibble keeps hex and binary aligned.
Who needs hex-to-binary the most?
Embedded developers, network packet analysts, and security researchers staring at memory dumps.
When should I look at binary instead of hex?
Whenever you need to verify individual bits — flags, permission masks, or interrupt vectors.
Where do leading zeros come from?
Each hex digit is padded to 4 bits to keep nibble alignment, so 1 becomes 0001 not 1.
Why are bits grouped in fours?
It mirrors the hex digits so you can place hex over the binary line and read both at once.
How do I get a continuous bit string?
The Bits cell in All Conversions shows the binary without spaces; copy that for protocol diagrams.