Nóta
Teastaíonn údarú chun rochtain a fháil ar an leathanach seo. Is féidir leat triail a bhaint as shíniú isteach nó eolairí a athrú.
Teastaíonn údarú chun rochtain a fháil ar an leathanach seo. Is féidir leat triail a bhaint as eolairí a athrú.
Syntax
Character.FromNumber(number as nullable number) as nullable text
About
Returns the character equivalent of the number.
The provided number should be a 21-bit Unicode code point.
Example 1
Convert a number to its equivalent character value.
Usage
Character.FromNumber(9)
Output
"#(tab)"
Example 2
Convert a character to a number and back again.
Usage
Character.FromNumber(Character.ToNumber("A"))
Output
"A"
Example 3
Convert the hexadecimal code point for the "grinning face" emoticon to its equivalent UTF-16 surrogate pair.
Usage
Character.FromNumber(0x1F600)
Output
"#(0001F600)"