Unicode Display problem - TechRepublic
General discussion
October 30, 2003 at 07:40 AM
itramaraj

Unicode Display problem

by itramaraj . Updated 22 years, 8 months ago

I know that it is possible to display unicode characters in TextField or TextArea or even in System prompt. The following program is not displaying the requested unicode character. What can i do?

public class UnicodeDisplay
{
public static void main(String[] args)
{
char c = ‘\u0061’; //Some unicode character
System.out.println(c+””);
}
}
I want the program to display list of all unicode characters(Tamil Language) using Java. Please help me.

This discussion is locked

All Comments