Help for this page

Select Code to Download


  1. or download this
    sub uri_unescape {
        my $str=shift @_;
        $str=~s/%(\w{2})/chr(hex($1))/ge;
        return $str;
    }