Description:Message> %s “\x%s” does not map to Unicode
admin Perl
When reading in different encodings Perl tries to map everything into Unicode characters. The bytes you read in are not legal in this encoding, for example
utf8 "\xE4" does not map to Unicode
if you try to read in the a-diaereses Latin-1 as UTF-8.
When reading in different encodings Perl tries to map everything
into Unicode characters. The bytes you read in are not legal in this
encoding, for example
if you try to read in the a-diaereses Latin-1 as UTF-8.