Regex for different language /letters

how to work with latin letters in matches activity ?
https://www.regular-expressions.info/unicode.html
any one has used any solution from here like \p{Latin}

@Sakshi_Jain ,
If you need to get the Latin characters also in your match then try with this,

Regex.Match(inputString, "[\u0000-\u024F]+", RegexOptions.None)