alt text

How to display 192 character symbol ( └ ) in perl ?

link|improve this question

7  
192 isn't actually ASCII. The ASCII set ends at 128 (or 127, depending on what exactly you include). – Jon Skeet Sep 20 '10 at 15:43
what is perfect title for this question ? – Tree Sep 20 '10 at 15:44
2  
If you want to print the character with a value of 192 then you need to tell us which character encoding you're using. It isn't ASCII, as ASCII only defines 128 characters? Are you using one of the extended character sets? Perhaps cp1252 or ISO-8859? – Dave Cross Sep 20 '10 at 15:47
feedback

4 Answers

up vote 10 down vote accepted

What you want is to be able to print unicode, and the answer is in perldoc perluniintro.

You can use \x{nnnn} where n is the hex identifier, or you can do \N{...} with the name:

perl -E 'say "\x{2514}"; use charnames; say "\N{BOX DRAWINGS LIGHT UP AND RIGHT}"'
link|improve this answer
I have edited the code example to be relevant to the question. If you do not agree, you can easily undo this. – daxim Sep 20 '10 at 17:02
@daxim: Thanks! – Daenyth Sep 20 '10 at 17:04
feedback

To use exactly these codes your terminal must support Code Page 437, which contains frames. Alternatively you can use derived CP850 with less boxing characters. Such boxing characters also exist as Unicode Block Elements. The char which you want in perl is noted as \N{U+2514}. More details in perlunicode

link|improve this answer
"\x{2514}" does it, too. This syntax is explained in perlop. – daxim Sep 20 '10 at 16:55
feedback

That looks like the Code page 437 encoding. Perl is probably just outputting bytes that you give it. And your terminal is probably expecting UTF8.

So you need to decode it to Unicode, then re-encode it in UTF-8.

EDIT: Correct encoding.

link|improve this answer
Or, change your terminal settings. :) – brian d foy Sep 20 '10 at 16:48
3  
No, it's IBM437. See IANA, RFC 1345, en.Wikipedia. – daxim Sep 20 '10 at 16:51
feedback

As usual, Jon Skeet nails it: the 192 code is in the "extended ASCII" range. I suggest you follow @Douglas Leeder's advice, but I'm not sure which encoding www.LookupTables.com is giving you; ISO-8859-1 thinks 192 maps to "À", and Mac OS Roman thinks its "¿".

link|improve this answer
2  
"Extended ASCII" is a family of encodings. The one in the question is IBM437. See IANA, RFC 1345, en.Wikipedia. – daxim Sep 20 '10 at 16:52
feedback

Your Answer

 
or
required, but never shown

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