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
- input as String — The input string.
Return value
String — A list of the 32-bit Unicode code points in
input.
Example
Code
dim x = CodePoints("💎")
print Len(x)
print x(0)
Output