print copyright symbol in TextView

android, java

Solution

Try the unicode symbol "\u00a9" and see if it works

Problem

I am parsing the xml which has copyright symbol in some tag which i'm getting as String and displaying it on TextView. But instead of symbol it is printing #174; . Can anyone tell that how can I print appropriate symbol. EDIT: It is like this in xml Raghav© and i want to display it like this, but it is displaying only #174;

Original source

Related problems