I've got an input box that allows UTF8 characters -- can I detect whether the characters are in Chinese, Japanese, or Korean programmatically (part of some Unicode range, perhaps)? I would change search methods depending on if MySQL's fulltext searching would work (it won't work for CJK characters).

Thanks!

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

CJK characters are restricted to certain Unicode Blocks. You need to check the characters if they are inside these blocks, and should consider surrogates (32bit characters) too.

link|improve this answer
feedback

Do you want to detect whether a character is a (Chinese or Japanese or Korean) character? Or do you want to tell Chinese characters apart from Japanese characters? The former is easy; the latter is in many cases impossible, due to Han Unification.

link|improve this answer
The former, thankfully. – ash Apr 8 '10 at 10:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.