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

iguane has asked for the wisdom of the Perl Monks concerning the following question:

In the module URI::Escape, it seems to have a problem. In fact when i try to do :
print uri_escape ( '~' ) ;
the return value is the same ~ bit normaly it must be %7E .
But the reverse code  print uri_unescape ( '%7E' ) ; give the correct value ~.
Is somebody have seem the same problem ?
Thanks

Originally posted as a Categorized Question.