I\'m having problems dealing with unicode characters from text fetched from different web pages (on different sites). I am using BeautifulSoup.
The problem is that
For me, what worked was:
BeautifulSoup(html_text,from_encoding="utf-8")
Hope this helps someone.