0x1339
0x1339 is a hexadecimal number written with the typical programming convention of a 0x prefix to indicate base-16 representation. In decimal, 0x1339 equals 4921. In binary it is 0001 0011 0011 1001, using four hexadecimal digits to represent 16 bits.
In general software use, numbers written as 0x followed by hex digits are treated as numeric literals.
Memory representation varies by endianness. On a big-endian system, the 16-bit value 0x1339 would be stored
Because 0x1339 is a relatively small and common-looking literal, it may appear in tutorials, sample code, or
See also: hexadecimal notation, 0x prefix, endianness, numeric literals.