CalcuClubCalcuClub Logo

Hexadecimal to Binary Converter

Enter the hexadecimal number you want to convert to binary.

The result will be displayed here.
Calculation Steps:
Calculation steps will be displayed here.

Table of Contents

How does hexadecimal to binary conversion work?

The hexadecimal system is base 16 and the binary system is base 2. To convert a hexadecimal number to binary, replace each hexadecimal digit with its 4-bit binary equivalent. This method is straightforward because each base-16 digit corresponds exactly to a group of 4 binary digits.

Hexadecimal to binary conversion formula

For a hexadecimal number with n digits:

hnhn-1...h1h0 → (bn3bn2bn1bn0) (b(n-1)3b(n-1)2b(n-1)1b(n-1)0) ... (b13b12b11b10) (b03b02b01b00)

Each hexadecimal digit hi is converted into a 4-bit binary group, equivalent to its base-16 value (0–9 or A–F). The final binary number is obtained by concatenating all the binary groups in the same order.

Conversion process

  1. Write down the hexadecimal number.
  2. Replace each digit with its 4-bit binary equivalent (use 0–9 and A–F → 0000–1111).
  3. Join all the 4-bit groups together to form the complete binary number.

Examples

Example 1: convert A₁₆ to binary
Hexadecimal digitBinary equivalent (4 bits)
A1010

Result: A₁₆ = 1010₂.

Result: A₁₆ = 1010₂.

Example 2: convert 2F₁₆ to binary
Hexadecimal digitBinary equivalent (4 bits)
20010
F1111

Reading the groups together: 2F₁₆ = 0010 1111₂.

Result: 2F₁₆ = 0010 1111₂.

Hexadecimal to binary conversion table

Quick reference values for short hexadecimal numbers.

Hexadecimal (base 16) to binary (base 2) references
HexadecimalBinary
00000
10001
20010
30011
40100
50101
60110
70111
81000
91001
A1010
B1011
C1100
D1101
E1110
F1111
1010000
FF11111111
100100000000

Frequently Asked Questions

How do you convert a hexadecimal number to binary?

To convert a hexadecimal number to binary, replace each hexadecimal digit with its 4-bit binary equivalent. For example, A₁₆ = 1010₂ and F₁₆ = 1111₂.

Why is converting from hexadecimal to binary so easy?

Because each hexadecimal digit corresponds exactly to 4 binary bits, allowing for a direct conversion without extra calculations.

How was this page? Share feedback.