- or download this
HTML::Entities::decode_entities_old($string)
- or download this
my $string = "’";
chop ( $string .= chr(0x1234));
print "string: $string\n"; # &rsquo
decode_entities($string);
- or download this
# at the top of the program
binmode STDOUT, ":utf8";