Android set degree symbol to Textview [duplicate] April 26, 2023 by Tarik The unicode value for it is U+00B0 so you could do the following: myTextView.setText ( "78" + (char) 0x00B0 );