Symbol | Value | Proportion |
---|---|---|
F | 15 | |
E | 14 | |
D | 13 | |
C | 12 | 3/4 |
B | 11 | |
A | 10 | |
9 | 9 | |
8 | 8 | 1/2 |
7 | 7 | |
6 | 6 | |
5 | 5 | |
4 | 4 | 1/4 |
3 | 3 | |
2 | 2 | |
1 | 1 | |
0 | 0 | Off |
When we have a number with two digits, it represents a value higher than 15 and less than 256. The first digit is the number of 16s in the value, or the 16s place. (Just as with regular decimal number, the first digits is the number of 10s or the 10s place.)
If we have a number like 0x80 (which means hexadecimal 80 to distinguish it from decimal 80), it means 8 x 16 + 0 = 128. All hex numbers can be calculated this way, but normally we don't need to. Just as we don't say 74 is 7 x 10 + 4, we would not necessarily say that 0x74 is 7 x 16 + 4 = 116. We would just that that 0x74 is a little less than 0x80, or a little less than 128. For colors, we would just think that 0x74 or #74 means the light is turned on almost halfway.
As with decimal numbers, if a number has more than one digit, we attach more importance to the first digit because it carries bigger weight. 84 is bigger than 56 because 8 is bigger than 5. We don't even think about the 4 and the 6 because they are less significant digits.