The Euro symbol, when running an .au3 file in SciTE4AutoIt3, is represented as x80
. Example:
What is it and why does it happen?
The Euro symbol, when running an .au3 file in SciTE4AutoIt3, is represented as x80
. Example:
What is it and why does it happen?
What is it …
As per Documentation - Intro - Unicode Support:
There are a few parts of AutoIt that don't yet have full Unicode support. These are:
… Console operations are converted to ANSI.
€
(ANSI/Windows-1252) equals:
x80
(hexadecimal),128
(decimal).… why does it happen?
As per Documentation - Language Reference - Datatypes:
In AutoIt there is only one datatype called a Variant. A variant can contain numeric or string data and decides how to use the data depending on the situation it is being used in.
Issuing ConsoleWrite(0x80 & @LF)
demonstrates stated behavior (SciTE4AutoIt3's behavior may differ from regular SciTE). In SciTE4AutoIt3 provided code returns:
€
€
Also, ALT + [ 0 - 1 - 2 - 8 ] produces €
.