Binary - Hexadecimal Converter

This calculator can be used to convert binary numbers to hexadecimal numbers and hexadecimal numbers to binary numbers.

If you want to convert a number from a number system with base a to a number system with base b, then you can first convert the number from the number system with base a to the decimal system and from the decimal system to the number system with base b. If you do this by hand, it can be very time-consuming for large numbers. But for the conversion from the binary system to the hexadecimal system or vice versa, there is a trick with which you can do the conversion very easily and without electronic tools. For this the following table can be helpful:

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

Convert binary to hexadecimal

If you want to convert a binary number into a hexadecimal number, you divide the binary number into blocks. With the exception of the foremost block, all blocks must consist of exactly 4 bits. The foremost block can also contain less than 4 bits. If you want, you can fill it up with leading 0's, so that it also consists of 4 bits. After that you only have to convert each block into the hexadecimal system. With 4-bit blocks this can be done quite easily in your head or you can use a table like the one above. The order of the digits of the hexadecimal number corresponds to the order of the respective blocks of the binary number.

As an example, 111010111001102 is to be converted to the hexadecimal system.

The 4-bit blocks are converted from the binary system to the hexadecimal system.

In the hexadecimal system, the number is thus: 3AE616

binary in hexadecimal with binary point:

The same principle can be used to convert numbers with binary point from the binary system to the hexadecimal system. This time the blocks are divided in such a way that all blocks between the foremost block of the part before the pointand the rearmost block of the part behind the point contain exactly 4 bits. The two blocks on the outside may have less than 4 bits. Each block may only contain bits from either the part before the point or the part after the point. If the backmost block of the fractional part contains less than 4 bits, it is important to treat it as if it were filled up with zeros at the back. For example, if the last block of the fractional part contains only a "1", this block is treated as if there were a "1000". In order not to make a mistake, it can also be useful to write down the additional zeros.

As an example, the number 1110101110.0110012 is to be converted from the binary system to the hexadecimal system. One calculates:

Convert a binary number with binary point to a hexadecimal number

In the hexadecimal system, the number is: 3AE,6416

convert hexadecimal to binary

If you want to convert a number from the hexadecimal system to the binary system, you just have to convert each digit of the hexadecimal number to the corresponding 4-bit block in the binary system. If the first block starts with zeros, these may be removed.

For example, 3A216 is to be converted to the binary system:

Conversion of a hexadecimal number into a binary number.

The first two zeros in the foremost block can be removed. The following therefore applies: 3A21611101000102

hexadecimal to binary with fractionals:

For numbers with point, proceed in principle as described above. However, if the last 4-bit block ends with zeros, these may be removed.

As an example, 5.A4816 is to be converted to binary. Thus one calculates:

Convert a hexadecimal number to binary with a binary point.

The last 3 zeros can be removed. So it applies: 5.A4816101.1010010012

good explanatory videos on Youtube

Share:FacebookTwitter