Print copyright symbol in TextView

I am parsing the xml with the copyright symbol in some tag that I get as a String and display it in a TextView. But instead of a symbol, this is print # 174 ;, Can anyone tell me how I can print the corresponding symbol.

EDIT: This is similar to Raghav Š xml and I want to display it like this, but it only displays # 174;

+6
source share
1 answer

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

+37
source

Source: https://habr.com/ru/post/923481/


All Articles