Help for this page

Select Code to Download


  1. or download this
    use strict;
    use Encode;
    ...
    
    open my $fh, ">:encoding(UTF-8)", $file or die $!;
    print $fh $in;
    
  2. or download this
    use strict;
    use Encode;
    ...
    binmode STDOUT, ">:encoding(UTF-8)";
    
    print $string;