Regular Expression To Match Chinese Characters

A regular expression that matches any Chinese characters (both Simplified and Traditional Chinese).

/^[\u4e00-\u9fa5]{0,}$/

Matches:

  • 中文
  • 繁體
  • 正则表达式

Non-matches:

  • 中文1
  • 中文a
  • 繁體A

See Also: