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