I am using a function to reverse a string for testing,
public inline function Reverse(text:String):String {
var out:Array<String> = text.split("");
out.reverse();
return out.join("");
};
with the string that contains Greek characters
trace( "Test Unicode: "+tString.Reverse("Καλημέρα") );
but all I get in the console is ▒╬Β╧φ╬╝╬╖╬╗╬▒╬γ╬
is this an issue with Strings and need to do something more or with the console output?