static bool isChineseLetter(String ch) { if (ch.charCode >= 0x4E00 && ch.charCode <= 0x9FA5) return true; return false; }