Lưu ý
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử đăng nhập hoặc thay đổi thư mục.
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử thay đổi thư mục.
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)"