0xE0B
0xE0B is a hexadecimal numeral. The prefix 0x indicates that the digits that follow are in base 16. The digits E, 0, and B correspond to decimal 14, 0, and 11 respectively. Therefore the value of 0xE0B is 14×256 + 0×16 + 11 = 3595. In binary it is 1110 0000 1011 (12 bits).
Usage of 0xE0B and similar literals is common in programming and digital electronics. Hexadecimal literals are
In other contexts, 0xE0B is not typically used as a standalone identifier outside programming. It may appear
See also hexadecimal notation, decimal system, binary representation, memory addressing, and bitwise operations.