in reply to XML::Parser does not parse the Symbol
#!/usr/bin/perl use warnings; use strict; use utf8; use XML::Parser; my $xml = "<symbols><![CDATA[Testing for Symbol ¿]]></symbols>"; my $parser = 'XML::Parser'->new; $parser->parse($xml); [download]