StringFromCodePoints Procedure

Creates a string from a list of 32-bit Unicode code points. To convert the string back into a list of code points, use the CodePoints function.
Warning: Correct usage of this function requires deep Unicode knowledge. Consider using the Characters and Concat functions instead.
Declaration
function StringFromCodePoints(codePoints as List of Number) as String

Parameters

Return value

String — String created from codePoints.

Example

Code
print StringFromCodePoints([65, 128142])
Output
A💎