Help for this page

Select Code to Download


  1. or download this
    use open ':std', ':locale';  # So stuff you print shows up right.
    
    ...
    s/\\u(.{4})/chr(hex($1))/eg;
    print "decoded string length is ", length($_), "\n";
    print "decoded string is $_\n";