in reply to unicode in perl
use utf8; doesn't mean that your perl(1) is going to use UTF-8 for input/output.
From utf8 (and please read it):
Do not use this pragma for anything else than telling Perl that your script is written in UTF-8.As Khen1950fx pointed out, you should use binmode for outputting these 'wide chars'.
|
---|