On 30 May 2007 06:07:55 -0700, cc96ai <[EMAIL PROTECTED]> wrote:
snip
I have a UTF8 input
$value = "%23%C2%A9%C2%AE%C3%98%C2%A5%C2%BC%C3%A9%C3%8B
%C3%B1%C3%A0%C3%A6%3F%23";

the HTML output should be
">#(c)(r)Ø¥¼éËñàæ?#";

but I cannot find a way to convert it
snip

#!/usr/bin/perl
use strict;
use warnings;
use URI::Escape;

my $s = '%C3%A9';

print uri_unescape($s), "\n";

This prints
é
for me.

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to