Thread Konvertierung Windows-1252 -> UTF8
(21 answers)
Opened by jan99 at 2014-09-19 11:52
utf8 ist die interne Unicode-Kodierung von Perl, die rein gar nichts mit der Kodierung UTF-8 zu tun hat.
Du musst nochmals rückkodieren: Code (perl): (dl
)
1 2 from_to($_,"Windows-1252","utf8", Encode::FB_QUIET); from_to($_,"utf8", "UTF-8", Encode::FB_QUIET); |