How can I display special characters in some control like TextArea.
I am using TextArea control.
I have a character array containing all ascii values.
But the characters that get displayed are not the actual ones.
Thanks,
Onkar
Printable View
How can I display special characters in some control like TextArea.
I am using TextArea control.
I have a character array containing all ascii values.
But the characters that get displayed are not the actual ones.
Thanks,
Onkar
Use the unicode escape sequence ...
e.g. char c = '\u0000' represents the space character where 0000 is the hex value for a space. You can find many ascii character maps on the net just do a search.
Van Glass
http://www.jscape.com