in reply to Re^3: javascript encodeURI() -> perl uri_unescape_utf8() ?in thread javascript encodeURI() -> perl uri_unescape_utf8() ?
use CGI qw(unescape); $_ = "a%20%C3%A5%20%2F"; $value = CGI::unescape($_); [download]
(it's in CGI/Util.pm)