StringFromCodeUnits Procedure

Creates a string from a list of UTF-8 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-8 has four code units: 0xF0 0x9F 0x92 0x8E
print StringFromCodeUnits([65, 240, 159, 146, 142])
Output
A💎