Converting a Unicode string will return the contents of the Unicode string as an ASCII string.
Solution for How to convert a Unicode string to a string in Python : You can use str.encode() to convert a Unicode string to an ASCII string Call str.encode(encoding, errors) with encoding as “ASCII” and errors as “ignore” to return an ASCII representation of a Unicode string str.
Call str.encode(encoding, errors) with encoding as “ASCII” and errors as “replace” to return an ASCII representation of a Unicode string str with non-ASCII characters replaced by “?”.
unicode_string = u"aa«aà ç±ç²£çñññ¤¿"