Hexadecimal Digits Hoag 4/6/2000 0000 = 0 0001 = 1 0010 = 2 0011 = 3 0100 = 4 0101 = 5 0110 = 6 0111 = 7 1000 = 8 1001 = 9 1010 = A = 10 1011 = B = 11 1100 = C = 12 1101 = D = 13 1110 = E = 14 1111 = F = 15 This scheme is mathematically correct. Each binary digit has a value. From the right, the places are 1's, 2's, 4's, and 8's (which are 2 raised to the power 0,1,2,3). The hexadecimal characters are 0 through 9 and A through F, associated with decimal values 0 through 15. Speaking, we may abbreviate hexadecimal to "hex". There are two hex characters in a byte. We one byte to contain a single ASCII character, like letters, punctuation, and digits 0-9.