In C-like languages, the binary number 16 is represented by 0X or the beginning of 0x, so:
1~9 16 is expressed in hexadecimal as 0x00 1 ~ 0x09, and 10 ~ 15 is expressed in hexadecimal as 0~0x0f.
In addition, in some programming languages (such as basic), hexadecimal numbers are expressed with the end of h, for example, 123h is 0x 123.