Thread Charsetproblem: utf8 zu HTML-Codierung
(28 answers)
Opened by Gast at 2005-07-20 23:46
#!/usr/bin/perl
use Encode (); use HTML::Entites (); my $data='fÃ&¼r'; # ist für in UTF8 Encode::from_to($data, "utf8", "iso-8859-1"); print HTML::Entites::encode_entities($data) |