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?
- Hexadecimal to binary conversion method
- Conversion process
- Example #1
- Example #2
- Hexadecimal to binary conversion table
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
- Break down the hexadecimal number into its individual digits.
- Convert each hexadecimal digit to its 4-bit binary equivalent using a reference table.
- Concatenate all resulting binary groups to form the complete binary number.
Example #1
Convert A9
from hexadecimal to binary:
- Split
A9
intoA
and9
. - Convert
A
to1010
and9
to1001
. - Concatenate the results:
A9
in hexadecimal is10101001
in binary.
Example #2
Convert 1F3
from hexadecimal to binary:
- Split
1F3
into1
,F
, and3
. - Convert:
1
to0001
F
to1111
3
to0011
- Concatenate the results:
1F3
in hexadecimal is000111110011
in binary.
Hexadecimal to binary conversion table
Hexadecimal | Binary |
---|---|
0 | 0000 |
1 | 0001 |
2 | 0010 |
3 | 0011 |
4 | 0100 |
5 | 0101 |
6 | 0110 |
7 | 0111 |
8 | 1000 |
9 | 1001 |
A | 1010 |
B | 1011 |
C | 1100 |
D | 1101 |
E | 1110 |
F | 1111 |
1F | 0001 1111 |
3F | 0011 1111 |
55 | 0101 0101 |
7F | 0111 1111 |
80 | 1000 0000 |
AA | 1010 1010 |
F0 | 1111 0000 |
FF | 1111 1111 |