PDA

View Full Version : special char support


pep
05-23-2004, 08:24 AM
how to print an Euro ( € ) Symbol?

I tried
\200
€
€

None seems to work

antun
05-24-2004, 11:14 AM
The problem is that the Euro character is in the Unicode charset, and the LPS does not currently support Unicode (although this is coming).

You could look for a TrueType font that contained the Unicode character as an 8-bit charset, and use that. It should then work, but the code would probably be something other than €.

Or you could generate your own font that includes it in an 8-bit charset.

-Antun