unicode_codepoints_to_string()

Learn how to use the unicode_codepoints_to_string() function to return the string represented by the Unicode codepoints.

Returns the string represented by the Unicode codepoints. This function is the inverse operation of unicode_codepoints_from_string() function.

Syntax

unicode_codepoints_to_string (values)

Parameters

NameTypeRequiredDescription
valuesint, long, or dynamic✔️One or more comma-separated values to convert. The values may also be a dynamic array.

Returns

Returns the string made of the UTF characters whose Unicode codepoint value is provided by the arguments to this function. The input must consist of valid Unicode codepoints. If any argument isn’t a valid Unicode codepoint, the function returns null.

Examples

print str = unicode_codepoints_to_string(75, 117, 115, 116, 111)

Output

str
Kusto
print str = unicode_codepoints_to_string(dynamic([75, 117, 115, 116, 111]))

Output

str
Kusto
print str = unicode_codepoints_to_string(dynamic([75, 117, 115]), 116, 111)

Output

str
Kusto
print str = unicode_codepoints_to_string(75, 10, 117, 10, 115, 10, 116, 10, 111)

Output

str
K
u
s
t
o
print str = unicode_codepoints_to_string(range(48,57), range(65,90), range(97,122))

Output

str
0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz