Re: Please help me with this perl question

2012-02-14 Thread Lars Dɪᴇᴄᴋᴏᴡ 迪拉斯
Yes, it is possible. This is an example: perl -C -E'say\x{e8f4}\x{e8f5}' Screenshot: http://i.imgur.com/wivY9.png The magic happens not at the Perl level, but at the rendering step. I first picked two unassigned codepoints. Unicode provides a private use area for exactly this kind of

Please help me with this perl question

2011-12-30 Thread FORREST COPLEY
Is it possible to write a perl script to print a completely custom character on a console text terminal? Say a D rotated 90 degrees or something. or an A with the innards filled in. -- Forrest Copley | Senior Technical Support Engineer, Solaris OS Support , Global Systems Support Email:

Re: Please help me with this perl question

2011-12-30 Thread Karl Williamson
On 12/29/2011 10:48 AM, FORREST COPLEY wrote: Is it possible to write a perl script to print a completely custom character on a console text terminal? Say a D rotated 90 degrees or something. or an A with the innards filled in. --

Re: Please help me with this perl question

2011-12-30 Thread Dean Hoover
I don't see how you can do that... you are dependent on the capabilities of the terminal. If its an old school text terminal, you can't just draw arbitrary stuff like a rotated D. That is pretty fancy and even in graphics mode has nothing to do with perl, or do I misunderstand your question? On