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

Binary to Hex converter

How to convert Binary to Hex

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.

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.

Formula

Follow these steps to convert a binary number into hexadecimal form:
  1. Start from the right side of the binary number and divide it up into groups of 4 digits. Add extra zeros to the front of the first number if it is not four digits.
  2. Convert each group of 4 binary digits to its equivalent hex value from the conversion table below.
  3. Concatenate the results together. This is the solution.
Conversion table:
BinaryHexadecimal
00000
00011
00102
00113
01004
01015
01106
01117
10008
10019
1010A
1011B
1100C
1101D
1110E
1111F
For example if the given binary number is 11011010100111:
Binary(00)11011010100111
Hexadecimal36A7
Then the hexadecimal solution is: 36A7
Switch to desktop version