Description
The ChrW (x) function returns the single character text string associated with the Unicode value passed in as x.
Arguments
x is a whole number, specifically, it is any Unicode value. x must be between 0 and 65535, or you will get a numeric overflow error.
Returns
Text String (one character long)
Action
The ChrW (x) function returns the single character text string associated with the Unicode value passed in as x.
Typical uses
Use this function any time you need to obtain the character associated with a particular Unicode value.
Examples
ChrW(65)
Returns "A".
ChrW(332)
Returns "Õ"