http://www.perlmonks.org?node_id=964737


in reply to Re: UTF8 URI Escaping
in thread UTF8 URI Escaping

Not sure if you have tried URI::Escape..
use URI::Escape; $str = uri_unescape("%c2 %a2"); print "$str";
works!!!