Rohan Yeole - HomepageRohan Yeole

Hexadecimal to Binary Conversion Calculator

The hexadecimal number system (base-16) is commonly used in programming and digital systems. Converting it to binary (base-2) is a crucial step in interpreting and working with machine-level data.

How Hexadecimal and Binary Work

Hexadecimal uses digits 0–9 and letters A–F, each representing four binary digits (bits).
Binary uses only 0 and 1. It's the fundamental language of computers.

Example: Hex 1F₁₆
→ Decimal = 1×16 + 15 = 31
→ Binary = 11111₂

Conversion Method

Example:
Hex 2A₁₆ = 2 → 0010, A → 1010
Binary = 00101010₂

Hexadecimal to Binary Table

HexBinary
00000
10001
91001
A1010
B1011
C1100
D1101
E1110
F1111

Related Tools