Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: utf8 bloody chars

by AnomalousMonk (Archbishop)
on Oct 18, 2015 at 00:16 UTC ( [id://1145230]=note: print w/replies, xml ) Need Help??


in reply to utf8 bloody chars

Especially if you are a beginner, you should place the statements  use warnings; and  use strict; at the beginning of all your code:

c:\@Work\Perl\monks>perl -le "use warnings; use strict; ;; use utf8; ;; my $pi_char = chr(OxO3c9); print qq{Greek letter '$pi_char' here}; " Bareword "OxO3c9" not allowed while "strict subs" in use at -e line 1. Execution of -e aborted due to compilation errors.
I.e., "OxO3c9" (letter "O" vice decimal digit "0") is not a hex number, as already noted. See warnings and strict.

In other words, "Help Perl to help you."


Give a man a fish:  <%-{-{-{-<

Log In?
Username:
Password:

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

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

    No recent polls found