CodePoints Procedure

Converts a string to a list of 32-bit Unicode code points. To convert the list back into a string, use the StringFromCodePoints function.
Warning: Correct usage of this function requires deep Unicode knowledge. Consider using the Characters function instead.
Declaration
function CodePoints(input as String) as String

Parameters

Return value

String — A list of the 32-bit Unicode code points in input.

Example

Code
' GEM STONE (U+1F48E)
dim x = CodePoints("💎")
print Len(x)
print x(0)
Output
1
128142