Hex to Binary Converter

Converting Hexadecimal to Binary

Hexadecimal is a base 16 numbering system, in which each digit of a number are represented by 16 possible characters. These chracters are 0-9 and A-F. Hexadecimal is widely used when representing binary numbers, as they can perfectly represent a byte using only two digits.

Hexadecimal is an excellent way to represent large decimal numbers as you need less digits to represent the same number. For a classic 32 bit integer, you only need 8 hex digits to represent the maximum value, as opposed to the 11 required when using classical base 10 representations. Even numbers are nice!

Binary is very easily translated from hexadecimal, since four binary digits correspond to a single hexadecimal digit. Use the provided table to convert each hexadecimal digit into its binary equivalent.

Example

Converting f0a183b16 to binary:

f0a183b16 = 11110000101000011000001110112

Conversion Table

BinaryHexBinaryHex
0000010008
0001110019
001021010A
001131011B
010041100C
010151101D
011061110E
011171111F