Whilst reading through the "Data: Hashes" section of the FAQ I noticed
what appears to be a UTF-8 to ISO-8859-1 to HTML entity char
conversion error in brian d foy's entry about multilevel hash checks
(the last item in the section,
"http://faq.perl.org/perlfaq4.html#How_can_I_check_if_a").
Specifically, the word "naïve" contains an incorrectly-encoded "LATIN
SMALL LETTER I WITH DIAERESIS" character, which is instead shown using
2 HTML entities (ï) that reflect the 2 bytes the UTF-8
encoding of this character uses (C3 AF). I think the correct HTML
entity to use instead would be "ï".
Cheers,
Nick