How to convert Hexadecimal to Binary
Converting a hexadecimal number from Hexadecimal system to Binary system we need to convert four bit binary value corresponding for each digit of hexadecimal number.
| 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 |
Let's see an example. Hexadecimal number is 3A7 :
Convert each hexadecimal digit to binary
- 3 corresponds to 0011 in binary
- A corresponds to 1010 in binary
- 7 corresponds to 0111 in binary
The hexadecimal number 3A7 is equivalent to the binary number 001110100111
