kodpunktrepresentation
Kodpunktrepresentation, or code point representation, describes how a character’s underlying numeric code point is expressed and stored in computing systems. In Unicode, a code point is a scalar value assigned to a character, ranging from U+0000 to U+10FFFF. The same code point can be written in several notations, such as hexadecimal U+XXXX or its decimal equivalent.
Code points are abstract values, not bytes. To be stored or transmitted, they must be encoded into
Examples: the Latin letter A has code point U+0041. The grinning face emoji has code point U+1F600.
In programming, code point representations appear as literals or escapes, for example U+0041 or \u0041 in source