Character encoding issue in perlfaq4.html (Data: Hashes section)
[email protected] (Nick Morrott) Sun, 24 Apr 2011 08:18:35 +0100
| Newsgroups | perl.perlfaq.workers |
|---|---|
| Message-ID | <[email protected]> |
Hey, 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=C3=AFve" 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