0x7
0x7 is a hexadecimal numeral. The prefix 0x indicates that the digits that follow are expressed in base-16. The value 0x7 equals decimal 7 and binary 111.
In many programming languages, 0x7 is a numeric literal parsed as an integer. For example, in C
Practical use often involves bitwise operations. Because 0x7 has the binary form ...00000111, it is commonly
Origin and context: The 0x prefix originated in the C programming language and has since become a
See also: hexadecimal notation, bitmask, binary, programming languages.