Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Unicode normalize solution in Clear category for Remove Accents by nakanohito_piyo
import unicodedata;
def checkio(in_string):
return ''.join(c for c in unicodedata.normalize('NFD', in_string)
if unicodedata.category(c) != 'Mn')
Oct. 1, 2015
Comments: