Function Reference


ChrW

Returns a character corresponding to a unicode code.

ChrW ( UNICODEcode )

Parameters

UNICODEcode A unicode code in the range 0-65535 (e.g., 65 returns the capital letter A).

Return Value

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.

Remarks

A complete ASCII table is in the Appendix.

Related

Asc, AscW, Chr, String

Example


Local $text = ""
For $i = 256 To 512
    $text = $text & ChrW($i)
Next
MsgBox(0, "Unicode chars 256 to 512", $text)