Hexadecimal To Binary Converter
16
2
Converting steps hexadecimal to binary:
How to convert a hexadecimal number to the binary number?
Converting hexadecimal to binary is also super easy. As we know base of hexadecimal is 16 and base of binary is 2, so we can make a relation between binary base and hexadecimal base and that is
2 ⇔24⇔ 16. Now we can clearly understand if we transform one hexadecimal into to four binary digit together it will be a binary number.
[N:B: We can remove the extra zeros as like given in the example below:]
An example of hexadecimal to binary conversion:
(1B7.1A)8 = (?)2
Hexadecimal= | 1 | B | 7 | . | 1 | A |
---|---|---|---|---|---|---|
Arrow= | ↓ | ↓ | ↓ | ↓ | ↓ | |
Chunk= | ______ | ______ | ______ | ______ | ______ | |
Binary= | 0 0 0 1 | 1 0 1 1 | 0 1 1 1 | . | 0 0 0 1 | 1 0 1 0 |
Result is = (000110110111.00011010)2 or (110110111.0001101)2
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 |