Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -l
    
    ...
    my $safe = uri_escape($f);
    my $str  = uri_unescape($safe);
    print uri_unescape($str);
    
  2. or download this
    #!/usr/bin/perl -l
    
    ...
    my $utf8 = decode( "Detect", $data );
    binmode STDOUT, ":encoding(utf8)";
    print "$utf8: Looks like utf8 to me";