Return whether input matches regex of Chinese character.
static bool isZh(String input) { return '〇' == input || matches(regexZh, input); }