Binary to Hexadecimal Converter

Convert binary system to hexadecimal system with this online converter.

How to convert Binary to Hexadecimal

Converting a binary number from Binary system to Hexadecimal system we need to groupping four digit sets from right to left of binary number.

If there are not enough digits for a set then fill the zeros to left side to four digits.

Get each group's hexadecimal equivalent.

BinaryHexadecimal
00000
00011
00102
00113
01004
01015
01106
01117
10008
10019
1010A
1011B
1100C
1101D
1110E
1111F

Concatenate the hexadecimal values.

Let's see an example. Binary number is 110110101001 :

  • Group the binary digits into sets of four : 1101 1010 1001
  • Get each group's hexadecimal equivalent : D A 9
  • Concatenate the hexadecimal values : DA9

The binary number 110110101001 is equivalent to the hexadecimal number DA9