Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

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
on Jan 31, 2015 at 02:05 UTC ( [id://1115161]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Alphabetize in Esperanto
in thread Alphabetize in Esperanto

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", ]
  • Comment on 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 )
  • Download Code

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1115161]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (5)
As of 2024-04-16 18:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found