Hi
OS:Win10 (chcp 65001)
It works well :
var s:string
s="almő"
echo(s)
result : "almő"
It doesn't work :
var s:string
s="őalma" #first character UTF-8
echo(s)
result : ""
Than you Attila
Reproduced on Windows 10. Using default encoding shows:
┼Ĺalma
while using the chcp 65001 encoding shows an empty string, while the direct terminal command echo őalma displays the string correctly.