How to Convert Binary to Hexadecimal
Hexadecimal (base-16) uses digits 0–9 and A–F. Every 4 binary digits (bits) map directly to one hexadecimal digit. To convert, split binary into groups of four (padding with zeros if needed), then map each group to hex.
Conversion Table
- 0000 → 0
- 0001 → 1
- 0010 → 2
- 0011 → 3
- 0100 → 4
- 0101 → 5
- 0110 → 6
- 0111 → 7
- 1000 → 8
- 1001 → 9
- 1010 → A
- 1011 → B
- 1100 → C
- 1101 → D
- 1110 → E
- 1111 → F
Example: Convert 11011010 to Hex
- 1101 → D
- 1010 → A
Binary 11011010 = Hexadecimal DA
Why It Matters
Understanding this conversion is crucial in computing—especially in programming, networking, and digital systems—where hex gives a compact, human-readable form of binary data.