is there a way to highlight all the special accent characters in sublime text or any other text editor?
I a using the the HTML encode special characters in Sublime text to convert all the special character into their HTML code. I have a lot of accented characters in different parts of the file. So, it would be great if I could select all the special character and then use the plugin to convert all at once! Is there a regex that helps select all special characters only? Mikko Ohtamaa Yes. Sublime text supports regular expression and you can select all non-ASCII (code point > 128) characters. This regex find should be enough for you: [^\x00-\x7F] Just search and replace. But if you are doing