string word = "是集室內";
char fo = word[0];
UnicodeCategory cat = char.GetUnicodeCategory(fo);
if (cat == UnicodeCategory.OtherLetter)
{
//chinese char
}
else
{
//english char
}