Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: minimalist perl-utf8 question

by quester (Vicar)
on Feb 02, 2013 at 06:36 UTC ( [id://1016653]=note: print w/replies, xml ) Need Help??


in reply to minimalist perl-utf8 question

You need to mark STDOUT as being in UTF-8. Either binmode ..., ":encoding(UTF-8)"; or the slightly cryptic perl -C2 option will work:

$ perl -wE 'use utf8; binmode STDOUT, ":encoding(UTF-8)"; print "ייייי + ", length "ייייי", "\n";'

prints

ייייי 5

$ perl -C2 -wE 'use utf8; print "ייייי ", length "ייייי", "\n";'

prints

ייייי 5

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (4)
As of 2024-04-24 06:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found