You could run a search to find all non latin characters in file names using a regular expression like this:
File name: [^0-9a-z. _#-]
This should find anything that is not in the group:
0-9
a-z
Or other possible file name characters like:
. [dot]
[space]
_ [underscore]
# [hash]
- [dash]
For example:
