Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
One-liner solution in Clear category for Remove Accents by suic
checkio = lambda i: __import__("unicodedata").normalize('NFKD', i).encode('ASCII', 'ignore').decode() or i
Feb. 11, 2015
Comments: