| Description: |
Since hexadecimal is base 16, it must have single digits with values from 0 to 15. Hexadecimal digits representing values from 0 to 9 are obvious, and the letters A, B, C, D, E and F are used to represent the values 10, 11, 12, 13, 14 and 15. You should memorize the binary values of all of the hexadecimal digits, and the decimal values of powers of 16 from 0 to 4:
0 base16 = 0 0 0 0 base2 1 base16 = 0 0 0 1 base2 2 base16 = 0 0 1 0 base2 3 base16 = 0 0 1 1 base2 4 base16 = 0 1 0 0 base2 5 base16 = 0 1 0 1 base2 6 base16 = 0 1 1 0 base2 7 base16 = 0 1 1 1 base2 8 base16 = 1 0 0 0 base2 9 base16 = 1 0 0 1 base2 A base16 = 1 0 1 0 base2 B base16 = 1 0 1 1 base2 C base16 = 1 1 0 0 base2 D base16 = 1 1 0 1 base2 E base16 = 1 1 1 0 base2 F base16 = 1 1 1 1 base2
16 base = 1 16 base1 = 16 16 base2 = 256 16 base3 = 4,096 16 base4 = 65,536 |