Thread ISO-8859-7 nach UCS2 wandeln
(9 answers)
Opened by mawnet at 2008-06-19 15:40
OK ich habe folgendes versucht:
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 use CGI; my $cgi = new CGI; use URI::Escape; $isogreek = $cgi->param('greek'); $escaped = uri_escape( $isogreek ); print "Content-type: text/html\n\n"; print "$escaped <br>"; Das Resultat ist %CE%B5 und nicht wie erwartet %03%B5 (UCS2 code von EPSILON) Irgendwie drehe ich hier im Kreis... |