CalcuClubCalcuClub Logo

Hexadecimal to Binary Converter

Convert from:
Convert to:
The result will be displayed here.
Calculation Steps:
Calculation steps will be displayed here.

Table of Contents

How does hexadecimal to binary conversion work?

Converting numbers from hexadecimal to binary is straightforward due to the relationship between the two bases. Each hexadecimal digit represents exactly four bits, allowing for a simple and direct conversion. For example, the hexadecimal digit F translates to 1111 in binary.

Hexadecimal to binary conversion method

There is no specific mathematical formula for converting hexadecimal to binary, as each hexadecimal digit is independently converted to its binary equivalent. The key is to know the 4-bit binary representation of each hexadecimal digit.

Conversion process

  1. Break down the hexadecimal number into its individual digits.
  2. Convert each hexadecimal digit to its 4-bit binary equivalent using a reference table.
  3. Concatenate all resulting binary groups to form the complete binary number.

Example #1

Convert A9 from hexadecimal to binary:

  1. Split A9 into A and 9.
  2. Convert A to 1010 and 9 to 1001.
  3. Concatenate the results: A9 in hexadecimal is 10101001 in binary.

Example #2

Convert 1F3 from hexadecimal to binary:

  1. Split 1F3 into 1, F, and 3.
  2. Convert:
    1. 1 to 0001
    2. F to 1111
    3. 3 to 0011
  3. Concatenate the results: 1F3 in hexadecimal is 000111110011 in binary.

Hexadecimal to binary conversion table

HexadecimalBinary
00000
10001
20010
30011
40100
50101
60110
70111
81000
91001
A1010
B1011
C1100
D1101
E1110
F1111
1F0001 1111
3F0011 1111
550101 0101
7F0111 1111
801000 0000
AA1010 1010
F01111 0000
FF1111 1111

How was this page? Share feedback.