vote up 7 vote down star
2

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.

flag
Maybe its not the program .. i think its your shell oder your editor which does the output – n00ki3 Mar 9 at 19:33

6 Answers

vote up 20 vote down check

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.

link|flag
Update: Tested (I'm on Leopard too - awesome!) and works. – Chris Lutz Mar 9 at 19:35
I didn't know about this (I've only been putting UTF8 in a database, never printing it). +1. – Paul Tomblin Mar 9 at 19:37
That worked, Chris. Thank you! – Peter Conrey Mar 9 at 19:46
You're welcome. See also another correct answer: stackoverflow.com/questions/627661/… 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 at 20:59
...don't fix it, eh? – Chris Lutz Mar 9 at 21:00
show 4 more comments
vote up 2 vote down

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";
link|flag
vote up -1 vote down

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

link|flag
vote up 12 vote down

You can use the open pragma.

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

use open qw/:std :utf8/;

/I3az/

link|flag
Also good. I would +1 but I'm out of votes for today. – Chris Lutz Mar 9 at 20:54
Well you can always give it to me later ;-) – draegtun Mar 9 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 at 23:16
@draegtun - Done, sir! – Chris Lutz Mar 10 at 2:30
vote up -2 vote down

do in your shell: $ env |grep LANG

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

link|flag
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 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 at 0:45
vote up 0 vote down

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

link|flag
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 at 19:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.