Does Unicode store stroke count information about Chinese, Japanese, or other stroke-based characters?
In Python there is a library for that:
>>> from cjklib.characterlookup import CharacterLookup >>> cjk = CharacterLookup('C') >>> cjk.getStrokeCount(u'日') 4
Disclaimer: I wrote it