Forum Moderators: coopster
You can use \x to match a character's hex code (and search through ranges).
I don't know if Ç is a character in any alphabet, but the range from Ç (\x80) to Ñ (\xA5) appears to have most of the special accented characters and what not.
"/[\x80-\xA5]/" should match a good portion of the characters that you are looking for. (of course you can use a bar to use this in conjunction with a-z0-9 etc.)