How do you convert a Unicode string (containing extra characters like £ $, etc.) into a Python string?
Here is an example code
import unicodedata raw_text = u"here $%6757 dfgdfg" convert_text = unicodedata.normalize('NFKD', raw_text).encode('ascii','ignore')