Chr Procedure

Returns the character that corresponds to the specified Unicode code point number.
Declaration
function Chr(this as Number) as String

Parameters

Return value

String — The corresponding character.

Example

Code
dim x = Chr(65) ' code point for "LATIN CAPITAL LETTER A"
print x
Output
A