I know this post is old but I had just came across the same situation as the OP. I did finally find this solution that helped me, I hope it helps others as well.
SELECT * FROM {TABLE_NAME} WHERE {FIELD} REGEXP '[^ -~]'
This will display all rows that have non-English characters. Be aware that it also will display rows if there is punctuation in the values.