I am using Python (Tornado framework in specific) to develop a corp website. When I output the data to html, there were some special characters such as (r) or (tm) in unicode format, for example:
Google%u2122
How can I encode (or convert) it to the correct one, such as Google (TM). I try using encode() method but it didn't work.
Thank you very mych