unicode_codepoints_to_string()

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

Deprecated aliases: make_string()

Syntax

unicode_codepoints_to_string (values)

Learn more about syntax conventions.

Parameters

Name Type Required Description
values int, long, or dynamic ✔️ One or more comma-separated values to convert. The values may also be a dynamic array.

Note

This function receives up to 64 arguments.

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