Regex pattern /[^[:ascii:]]+/ui
will match one or more non-ascii characters.
Regex pattern /[\p{L}]+/ui
will match one or more characters in unicode 'letter' class.
I can't figure out a way how to match one or more characters that are in unicode 'letter' class AND are not ascii characters.