Hexadecimal to Binary Conversion

Convert an integer number from hexadecimal to binary by simply translating each hexadecimal digit into its 4-bit binary equivalent. Hexadecimal numbers have either an 0x prefix, a 16 subscript or an h suffix.

For example, the hexadecimal number 0x9E3 translates into 1001 1110 0011, as the binary values of 9, A and 3 are 1001, 1110 and 0011.


Hexadecimal to binary conversion quiz:

Question 1: Convert 0x68 from hexadecimal to unsigned binary.








Question 2: Convert 0xF2 from hexadecimal to unsigned binary.








Question 3: Convert 0x19 from hexadecimal to unsigned binary.








Question 4: Convert 0x123 from hexadecimal to unsigned binary.








Question 5: Convert 0x2BB from hexadecimal to unsigned binary.








Press the Submit button to see the results.