Hexadecimal to Binary

Please input hexadecimal values for conversion into binary.

Base 2


How to Convert Hexadecimal to Binary

To convert a hexadecimal number to binary, you can follow a simple process. Here's how you can do it:

1 A 3
0001 1010 0011

0000000110100011

Conversion Steps:

  1. Start with your hexadecimal number. For example, let's use the hexadecimal number 1A3.
  2. Replace each hexadecimal digit with its 4-bit binary equivalent. In this case:
    • 1 (hex) is equal to 0001 (binary).
    • A (hex) is equal to 1010 (binary).
    • 3 (hex) is equal to 0011 (binary).
  3. Concatenate the binary equivalents of each hexadecimal digit to form the complete binary representation.
    • The binary equivalents of 1A3 combine to create the binary representation: 0000000110100011. 1A3 is equal to 419 in decimal so it has to be stored in a 16-bit alignment.

That's it! You've successfully converted a hexadecimal number to binary.