Thread ISO-8859-7 nach UCS2 wandeln (9 answers)
Opened by mawnet at 2008-06-19 15:40

mawnet
 2008-06-19 17:46
#111275 #111275
User since
2008-06-19
5 Artikel
BenutzerIn
[default_avatar]
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...

View full thread ISO-8859-7 nach UCS2 wandeln