I am struggling with non-ASCII characters. Specifically I must read a text file with non-ASCII characters (local alphabet). I can do that and they are stored in a datastructure
i.e.
$myhash{$ascii_variable}=[@array_of_non-ascii];
All manipulations are done with the ascii key.
The problem is when I write the processed output to xlsx, the non-ascii characters do not print out right. Again, I am not 'doing anything ' with them, just reading and writing them.
Usually when I had such issues, it was just a couple of such characters, which I just copied manually and copied to an excel file. Then when I was reading the excel file, and printing it, everything was fine. But this time these are too many.
So how should I deal with this?