I often work with utf-8 text containing characters like:
\\xc2\\x99 \\xc2\\x95 \\xc2\\x85 etc
\\xc2\\x99
\\xc2\\x95
\\xc2\\x85
etc
If you want to remove all non-ASCII characters from a string, you can use
text.encode("ascii", "ignore")