Perlmonks doesn't unicode, perlmonks does windows-1252, your browser does conversion to windows-1252 ... and at some point html entities are used ... perlmonks faq doesn't unicode or utf8 or utf-8 it only latin1 or windows-1252 or something like that

so when posting to perlmonks stuff in unicode I always dd()dumper it

use strict; use warnings; use Data::Dump; my @zam = qw( / A B C Ĉ D E F G Ĝ H Ĥ I J Ĵ K L M +N O P R S Ŝ T U Ŭ V Z a á b c ĉ d e é f g ĝ h ĥ i ï j ĵ k l m n o ó p r s ŝ t u &#365 +; ú v z ); Possible attempt to put comments in qw() list at - line 2. s{&#(\d+);}{chr $1}ge for @zam; dd( \@zam ); __END__ [ "/", "A", "B", "C", "\x{108}", "D" .. "G", "\x{11C}", "H", "\x{124}", "I", "J", "\x{134}", "K" .. "P", "R", "S", "\x{15C}", "T", "U", "\x{16C}", "V", "Z", "a", "\xA0", "b", "c", "\x{109}", "d", "e", "\x82", "f", "g", "\x{11D}", "h", "\x{125}", "i", "\x8B", "j", "\x{135}", "k" .. "o", "\xA2", "p", "r", "s", "\x{15D}", "t", "u", "\x{16D}", "\xA3", "v", "z", ]

In reply to Re^4: Alphabetize in Esperanto ( perlmonks faq doesn't unicode or utf8 or utf-8 it only latin1 or windows-1252 or something like that ) by Anonymous Monk
in thread Alphabetize in Esperanto by aplonis

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.