Hexadecimal to Binary Converter

Convert hexadecimal system to binary system with this online converter.

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.

HexadecimalBinary
00000
10001
20010
30011
40100
50101
60110
70111
81000
91001
A1010
B1011
C1100
D1101
E1110
F1111

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