- or download this
use warnings;
binmode STDOUT, ":utf8";
print "\x{44b}\n";
- or download this
use Data::Dumper;
binmode STDOUT, ":utf8";
use PerlIO;
...
'perlio',
'utf8'
];
- or download this
use open qw/:std :utf8/;
use open OUT => ':encoding(UTF-8)', ':std';
- or download this
$VAR1 = [
'unix',
'perlio',
...
'encoding(utf-8-strict)',
'utf8'
];