Hex To Binary
Be sure to read my binary blog post and hexadecimal blog post before you read this tutorial on binary to hex.
Hex To Binary
Lets star with a hex number
F47B
Using the hex chart convert the hex to decimal numbers. .
F | 4 | 7 | B
15 | 4 | 7 | 11
Now convert each decimal number into binary
1111 | 0100 | 0111 | 1011
8 + 4 + 2 + 1 | 0 + 4 + 0 + 0 | 0 + 4 + 2 + 1 | 8 + 0 + 2 + 1
15 4 7 | 11
The answer is
11110100011111011