Help for this page

Select Code to Download


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