Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Character.FromNumber(number as nullable number) as nullable text
Returns the character equivalent of the number.
The provided number
should be a 21-bit Unicode code point.
Convert a number to its equivalent character value.
Usage
Character.FromNumber(9)
Output
"#(tab)"
Convert a character to a number and back again.
Usage
Character.FromNumber(Character.ToNumber("A"))
Output
"A"
Convert the hexadecimal code point for the "grinning face" emoticon to its equivalent UTF-16 surrogate pair.
Usage
Character.FromNumber(0x1F600)
Output
"#(0001F600)"