Help for this page

Select Code to Download


  1. or download this
    use autodie;
    use File::BOM;
    ...
    print $Out $_ while <$In>;
    close $In;
    close $Out;
    
  2. or download this
    use Encode;
    binmode STDIN;
    binmode STDOUT;
    print encode( 'Windows-1252', decode( 'UTF-8', $_ ) ) while <STDIN>;