How to set degree symbol in TextView in Android?
TextView
The unicode value for it is U + 00B0, so you can do the following:
myTextView.setText ( "78" + (char) 0x00B0 );