DragonCoder has asked for the wisdom of the Perl Monks concerning the following question:
Hi monks! I am a newbie in perl and have lots of problems in coding .. i am facing an error that says something like this.. Wide character in say at ./characters_codepoint.pl line 13. אαω and can u suggest me the best ways to learn perl, i am currently reading learning perl and practicing in a terminal on my mac.
#!/usr/bin/perl -w use 5.018; open(OUT,">out.html"); binmode(OUT, "utf8"); use utf8; my $alef = chr(0x05D0); my $alpha = chr(hex('03B1')); my $omega = chr(0x03C9); say "$alef$alpha$omega";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: wide character warning!
by Loops (Curate) on Nov 06, 2014 at 09:25 UTC | |
by 2teez (Vicar) on Nov 06, 2014 at 19:21 UTC | |
|
Re: wide character warning!
by Anonymous Monk on Nov 06, 2014 at 09:17 UTC | |
|
Re: wide character warning!
by Anonymous Monk on Nov 06, 2014 at 11:37 UTC |