CODE4USE

Hex to Binary Converter





Convert Hex to Binary

Enter the hex number (base 16) to decode
The number in binary representation:

Hex System

Hex, or hexadecimal, is a number system of base 16. This number system is especially interesting because in our casually used decimal system we have only 10 digits to represent numbers. As hex system has 16 digits, the extra needed 6 digits are represented by the first 6 letters of English alphabet. Hence, hex digits are 0,1,2,3,4,5,6,7,8 and 9 A, B, C, D, E, F. This number system is the most commonly used in mathematics and information technologies. I.e. in html programming colors can be represented by a 6-digit hexadecimal number: FFFFFF represents white, 000000 represents black, and so on.


Binary System

Binary is the simplest kind of number system that uses only two digits of 0 and 1. By using these digits computational problems can be solved by machines because in digital electronics a transistor is used in two states. Those two states can be represented by 0 and 1. That is why this number system is the most preferred in modern computer engineer, networking and communication specialists, and other professionals.


Hex to binary conversion examples

  • (1E3)16 = (0001 1110 0011)2
  • (0A2B)16 = (0000 1010 0010 1011)2
  • (7E0C)16 = (0111 1110 0000 1100)2

Related converters: Binary To Hex Converter


Hexadecimal to Binary Conversion Chart

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