Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
unicodedata solution in Clear category for Remove Accents by mplichta
import unicodedata
def checkio(text):
return ''.join(c for c in unicodedata.normalize('NFD', text) if unicodedata.category(c) != 'Mn')
June 6, 2018