Return the string character for ChrCode (Unicode/DBCS)
Syntax ChrW (ChrCode)
ChrW (65) will return A
ChrW is provided for platforms that use Unicode characters. Its argument is a Unicode (wide) character code, thereby avoiding the conversion from ANSI to Unicode.
Example
Dim strDemo
strDemo = ChrW (65)
> A
“You can easily judge the character of a man by how he treats those who can do nothing for him” ~ James D. Miles
Related:
Chr - Return the string character for ChrCode (ASCII code)