Converts a URL encoded string to its normal representation.
uri_unescape ( string )
URI.encode ( *args )
string - the string to be decoded
Returns decoded version of string
use URI::Escape;
my $string = "http://example.com/perl%20uri%20unescape";
my $decode = uri_unescape($string);
print $encode;
http://example.com/?a=perl uri unescape