StringFromCodeUnits Procedure

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

Parameters

Return value

String — String created from codeUnits.

Example

Code
' The emoji 💎 in UTF-16 has two code units: 55357, 56462
print StringFromCodeUnits([65, 55357, 56462])
Output
A💎