AscW
From AutoIt Wiki
Similar to the Asc's functionality, AscW returns the unicode of a character. Adapted from AutoIt docs.
Contents |
Syntax
AscW("char")
Parameters
| char | Any valid ASCII character. |
Return Value
Returns the unicode for char. Strings return the value of the first character.
Example
$code = AscW("A")
MsgBox(0,"Unicode code for A is ", $code)