URL decode

2002-10-05 Thread Kevin
Hello, I need to progrmatically decode the following UTF-8 data via CGI: q=%D7%91%D7%A8%D7%99%D7%AA Can this be done? -Kevin -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: URL decode

2002-10-05 Thread Kevin Meltzer
URI::Escape can do this for you. # perl -MURI::Escape -e 'print \ uri_unescape("%D7%91%D7%A8%D7%99%D7%AA")' > esc.txt The contents of esc.txt: \xd7\x91\xd7\xa8\xd7\x99\xd7\xaa Do what you need to with the output. Cheers, Kevin On Sat, Oct 05, 2002 at 08:25:31AM -0700, Kevin ([EMAIL PROTECTED