Help for this page

Select Code to Download


  1. or download this
    open my $fh, ">", "output.txt" or die $!;
    print $fh encode('latin-1', $euro_in_unicode), "\n";
    close $fh;
    
  2. or download this
    #!/usr/bin/perl
    use strict;
    ...
    }
    print $fh "$euro_in_unicode\n";
    close $fh;