
How to display 192 character symbol ( └ ) in perl ?
feedback
|
|
What you want is to be able to print unicode, and the answer is in You can use
| |||||
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 | ||||
|
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. | |||||||
feedback
|
|
As usual, Jon Skeet nails it: the | |||||
feedback
|