0x0FB3
0x0FB3 is a hexadecimal numeric literal used in computing to denote a 16-bit value. The 0x prefix indicates base-16 notation, a convention widely supported in programming languages such as C, C++, Java, and Python. The value of 0x0FB3 is 4019 in decimal, and its 16-bit binary representation is 0000 1111 1011 0011.
In practice, 0x0FB3 may appear as a constant in source code, a memory offset, or a bitmask.
When the value is serialized to bytes, endianness determines the order of the two bytes. In little-endian
Related concepts include hexadecimal notation, binary encoding, endianness, and integer literals in programming languages.