Convert OnlineConvertOnline

ConvertHex to BinaryOnline




This converter converts the given hex number to binary number.

Hex to Binary

Hexadecimal to binary conversion is the process of converting a hexadecimal (base-16) number into its binary (base-2) representation.

In the hexadecimal system, numbers are represented using the digits 0 through 9 and the letters A to F.

Steps to Convert Hexadecimal to Binary

Here are the steps to convert a hexadecimal number to binary:

  1. Convert each hexadecimal digit to its equivalent 4-bit binary representation.
  2. Concatenate the binary representations to get the final result.

Example

Let's take an example to illustrate the process. Suppose we want to convert the hexadecimal number 1A3 to binary:

  1. The given hexadecimal number is: 1 A 3.
  2. Convert each hexadecimal digit to binary of 4 bits each: 1 to 0001, A to 1010, 3 to 0011.
  3. Concatenate the binary digits : 000110100011.

The binary equivalent is 000110100011.

Therefore, 1A3 in hexadecimal is equal to 000110100011 in binary. With leading zeroes may be discarded, the resulting binary is 110100011