This question already has an answer here:
- Degrees symbol (as in Degrees Celsius/Fahrenheit) in a TextView 5 answers
How can I set the degree symbol to a TextView
in Android?
This question already has an answer here:
How can I set the degree symbol to a TextView
in Android?
The unicode value for it is U+00B0 so you could do the following:
myTextView.setText ( "78" + (char) 0x00B0 );