Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Remove Accents solution in Uncategorized category for Remove Accents by capback250
# migrated from python 2.7
import unicodedata
def checkio(in_string):
return ''.join(c for c in unicodedata.normalize('NFD', str(in_string)) if unicodedata.category(c) != 'Mn')
Oct. 11, 2015