Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Nothing special solution in Creative category for Remove Accents by ale1ster
from unicodedata import normalize as norm, combining as mark
checkio = lambda s: u''.join(c for c in norm('NFKD', s) if not mark(c))
June 2, 2014
Comments: