Here\'s a quick Perl question:
How can I convert HTML special characters like ü or ' to normal ASCII text?
ü
'
I started
Take a look at HTML::Entities:
use HTML::Entities; my $html = "Snoopy & Charlie Brown"; print decode_entities($html), "\n";
You can guess the output.