I need to change some characters that are not ASCII to \'_\'. For example,
Tannh‰user -> Tannh_user
if you know which characters you want to replace, you can apply string methods
mystring.replace('oldchar', 'newchar')