0x032F
0x032F is a hexadecimal numeric literal commonly encountered in computing. The prefix 0x indicates base-16, and the value 0x032F equals 0x32F in canonical form, which is 815 in decimal. Leading zeros do not change the value.
In source code, 0x032F may appear as a constant in many programming languages such as C, C++,
Common uses for such a hex literal include representing specific bit patterns for flags, encoding small values,
If you meant a Unicode code point, the conventional notation is U+032F rather than 0x032F. In that
See also: hexadecimal notation, integer literals, bitwise operations, memory addressing.