python from unidecode import unidecode string_with_non_ascii = "Café" ascii_string = unidecode(string_with_non_ascii) print(ascii_string) Cafe