Returns a character corresponding to a unicode code.
ChrW ( UNICODEcode )
| UNICODEcode | A unicode code in the range 0-65535 (e.g., 65 returns the capital letter A). |
| Success: | Returns a string containing the representation of the given code. |
| Failure: | Returns a blank string and sets @error to non-zero if the UNICODE value is greater than 65535. |
Local $text = ""
For $i = 256 To 512
$text = $text & ChrW($i)
Next
MsgBox(0, "Unicode chars 256 to 512", $text)