I want to replace the number sign (#) with a character similar to that called music sharp sign (♯). I tried the following line but didnt work.
res['n'].replace('#', '♯')
I also tried these and also didnt work fine.
res['n'].replace('#', u'♯')
res['n'].replace('#', '\xe2')
Anyone got any idea about the situation?