Regular Expression To Match Persian Characters

A regular expression that can be used to match and validate Persian characters in a string.

/^[\u0600-\u06FF\uFB8A\u067E\u0686\u06AF\u200C\u200F]+$/g

Matches:

  • ٷ
  • ۹
  • د

Non-matches:

  • a
  • 1
  • A

See Also: