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.