Hi,
I have this following example :
import java.applet.Applet;
import java.awt.*;
import java.util.*;
public class langDemo extends
Applet {
public void init()
{
TextArea ta=new TextArea();
ta.setFont( new Font("Lucida Sans Unicode", Font.PLAIN,14));
ta.setLocale(new Locale("ja", "JP"));
ta.setText("{0x83,0x76,0x83,0x8a,0x83,0x93,0x83,0x5e,0x00}");
add(ta);
}
}
BUT DOESN'T DISPLAY JAPANESE LANG.!!!

Please help me out,
Thanks,
Angela