Core Function ChrW
From Sputnik Wiki
ChrW( <expression> )
Contents |
Description
Returns a character corresponding to a UNICODE code.
Parameters
expression
A unicode code in the range 0-65535 (e.g., 65 returns the capital letter A).
Return Value
Returns a string containing the representation of the given code.
Remarks
None
Example
$text = ""; For( $i = 256; $i <= 512; $i++) { $text .= ChrW($i); } MsgBox("Unicode chars 256 to 512: $text");