0xD60
0xD60 is a hexadecimal numeral commonly used in computing to denote the decimal value 3424. The prefix 0x signals base-16 notation, so the digits D, 6, and 0 correspond to 13, 6, and 0 respectively. The value in binary is 1101 0110 0000, and in decimal it is 3424.
In programming languages that support hex literals, 0xD60 is written exactly as shown. It can appear as
The use of the 0x prefix to denote hexadecimal literals originates from the C programming language and
See also: Hexadecimal, Numeric literals, 0x prefix, Binary, Byte alignment.