How can I replace characters such as , ①,Ⓐ to their 'normal' forms in python?
Note, however, I would still like accent character to remain the same (ç,á etc)
Hoping I don't need to make a dictionary.
More examples:
https://en.wikipedia.org/wiki/Enclosed_Alphanumerics
https://en.wikipedia.org/wiki/Enclosed_Alphanumeric_Supplement
http://xahlee.info/comp/unicode_circled_numbers.html
-=-=EDIT=--=-
For future people I used this, thanks AKX
(
"".join(
re.sub(r'([^\w])', '', unidecode.unidecode(ch)) #return only the word characters from the decode
if
ord(ch) > 65535 #Emoticons
or (ord(ch) >= 9312 and ord(ch) <= 9472) #circled
or (ord(ch) >= 65296 and ord(ch) <= 65305) #latin numbers
or (ord(ch) >= 65313 and ord(ch) <= 65338) #latin upper
or (ord(ch) >= 65345 and ord(ch) <= 9472) #latin lower
else
ch
for ch in criteria
)
)