I want to find out if a Chinese character can be displayed, the unidode for it is "\u8D27", how to use the Java Font method canDisplay ? It takes an int, but "8D27" is not an integer, how does it work, do I need another method to translate "8D27" to an int then use canDisplay ? If so how to translate it ?
Edit : To be more precise, how would a method below look like ?
boolean checkFonts(String inputUnicode)
{
... what goes here ??? ...
}
So if I call : checkFonts("\u8D27") , I can get a yes no answer.
Frank