Have to deal with several conversions between Hex (hexadecimal) and Binary numeral systems? Then this site is made for you! Use our super handy online tool to convert your data.Welcome!

Hex to Binary converter

How to convert Hex to Binary

Hexadecimal is a positional system that represents numbers using a base of 16. Unlike the common way of representing numbers with ten symbols, it uses sixteen distinct symbols, most often the symbols "0"-"9" to represent values zero to nine, and "A"-"F" to represent values ten to fifteen. Hexadecimal numerals are widely used by computer system designers and programmers, as they provide a human-friendly representation of binary-coded values.

A binary number is a number expressed in the base-2 numeral system or binary numeral system, which uses only two symbols: typically "0" and "1". The base-2 numeral system is a positional notation with a radix of 2. Each digit is referred to as a bit. Because of its straightforward implementation in digital electronic circuitry using logic gates, the binary system is used by almost all modern computers and computer-based devices.

Formula

Follow these steps to convert a hexadecimal number into binary form:
  1. Write down the hex number and represent each digit by its binary equivalent from the conversion table below.
  2. Concatenate the results together. Discard any leading zeros at the left of the binary number. This is the solution.
Conversion table:
HexadecimalBinary
00000
10001
20010
30011
40100
50101
60110
70111
81000
91001
A1010
B1011
C1100
D1101
E1110
F1111
For example if the given hexadecimal number is 3CF8:
Hexadecimal3CF8
Binary0011110011111000
Then the binary solution is: (00)11110011111000
Switch to desktop version