Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to write a Perl script using the "utf8" pragma, and I'm getting unexpected results. I'm using Mac OS X 10.5 (Leopard), and I'm editing with TextMate. All of my settings for both my editor and operating system are defaulted to writing files in utf-8 format.

However, when I enter the following into a text file, save it as a ".pl", and execute it, I get the friendly "diamond with a question mark" in place of the non-ASCII characters.

#!/usr/bin/env perl -w

use strict;
use utf8;

my $str = 'Çirçös';
print( "$str\n" );

Any idea what I'm doing wrong? I expect to get 'Çirçös' in the output, but I get '�ir��s' instead.

share|improve this question
Maybe its not the program .. i think its your shell oder your editor which does the output – n00ki3 Mar 9 '09 at 19:33

7 Answers

up vote 63 down vote accepted

use utf8; does not enable Unicode output - it enables you to type Unicode in your program. Add this to the program, before your print() statement:

binmode(STDOUT, ":utf8");

See if that helps. That should make STDOUT output in UTF-8 instead of ordinary ASCII.

share|improve this answer
Update: Tested (I'm on Leopard too - awesome!) and works. – Chris Lutz Mar 9 '09 at 19:35
1  
You're welcome. See also another correct answer: stackoverflow.com/questions/627661/writing-perl-code-in-utf8/… and remember, TMTOWTDI. And @Paul - if you're writing UTF-8 to a file, you should probably use binmode() on that filehandle and make it "proper" UTF-8, but if it works.. – Chris Lutz Mar 9 '09 at 20:59
1  
other ways: the open pragma ( search.cpan.org/perldoc/open ), the -C switch ( perldoc.perl.org/perlrun.html#-C ) – ysth Mar 10 '09 at 2:22
1  
FWIW here is the reason: strings that contains only latin1 (ISO-8859-1) characters, despite being stored more or less in utf8, will be output as latin1 by default. This way scripts from a pre-unicode era still work the same, even with a unicode-aware perl. – mirod Mar 10 '09 at 10:00
1  
The utf8 pragma does not let you write your source in UNICODE, it forces understand of your source in the UTF-8 (or UTF-EBCDIC) encoding of UNICODE, an important distinction. – Chas. Owens Apr 21 '09 at 13:06
show 4 more comments

You can use the open pragma.

For eg. below sets STDOUT, STDIN & STDERR to use UTF-8....

use open qw/:std :utf8/;

/I3az/

share|improve this answer
Also good. I would +1 but I'm out of votes for today. – Chris Lutz Mar 9 '09 at 20:54
Well you can always give it to me later ;-) – draegtun Mar 9 '09 at 23:14
BTW... I gave u +1. I think binmode(STDOUT, ':utf8') is probably more correct in this situation. "use open" has other good uses but I can't seem to find how u can set it to just encode STDOUT only? – draegtun Mar 9 '09 at 23:16
@draegtun - Done, sir! – Chris Lutz Mar 10 '09 at 2:30
this is the real deal. finally :). – darxsys May 9 at 6:48

TMTOWTDI, chose the method that best fits how you work. I use the environment method so I don't have to think about it.

In the environment:

export PERL_UNICODE=SDL

on the commandline:

perl -CSDL -le 'print "\x{1815}";

or with binmode:

binmode(STDOUT, ":utf8");          #treat as if it is UTF-8
binmode(STDIN, ":encoding(utf8)"); #actually check if it is UTF-8

or with PerlIO:

open my $fh, ">:utf8", $filename
    or die "could not open $filename: $!\n";

open my $fh, "<:encoding(utf-8)", $filename
    or die "could not open $filename: $!\n";

or with the open pragma:

use open ":encoding(utf8)";
use open IN => ":encoding(utf8)", OUT => ":utf8";
share|improve this answer
-CSDL worked for me where binmode alone did not. – beerbajay Mar 9 '12 at 9:11

Redirect the output to a text file and try that in an editor. If it displays fine there then your terminal's at fault.

share|improve this answer
No, the Leopard terminal has $LANG set to "en_US.UTF-8" by default. It's just that, by default (for backwards compatability - blek) Perl will output characters 128-255 as ? instead of Unicode, unless you specifically tell it not to. – Chris Lutz Mar 9 '09 at 19:39

Thanks, finally got an solution to not put utf8::encode all over code. To synthesize and complete for other cases, like write and read files in utf8 and also works with LoadFile of an YAML file in utf8

use utf8;
use open ':encoding(utf8)';
binmode(STDOUT, ":utf8");

open(FH, ">test.txt"); 
print FH "something éá";

use YAML qw(LoadFile Dump);
my $PUBS = LoadFile("cache.yaml");
my $f = "2917";
my $ref = $PUBS->{$f};
print "$f \"".$ref->{name}."\" ". $ref->{primary_uri}." ";

where cache.yaml is:

---
2917:
  id: 2917
  name: Semanário
  primary_uri: 2917.xml
share|improve this answer

What output were you expecting? Did you want the output escaped? Like URI::Escape might do?

share|improve this answer

do in your shell: $ env |grep LANG

This will probably show that your shell is not using a utf-8 locale.

share|improve this answer
Actually, it was set to utf-8. The problem was that I was outputting to STDOUT without setting binmode to utf-8; – Peter Conrey Mar 9 '09 at 19:47
This would be an orthogonal concern. You need your Perl script to output correct data before you can worry about how your terminal emulator interprets it. – jrockway Mar 10 '09 at 0:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.