Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Golf solution in Clear category for Remove Accents by alterGNU
from unicodedata import category as c, normalize as n
checkio = lambda s: ''.join(e for e in n('NFKD', s) if c(e) != 'Mn')
July 9, 2021