How do you put the degree symbol on a computer | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How do you put the degree symbol on a computer

25th Sep 2020, 4:20 PM
Grabiel
Grabiel - avatar
3 Answers
+ 1
Grabiel I know we already dm'd about this but it might be helpful to others as well... String dg=null; dg = Character.toString((char) 176); System.out.println(dg); This will get the degree symbol ° https://code.sololearn.com/c00c0k6qSWxj/?ref=app
25th Sep 2020, 9:02 PM
BroFar
BroFar - avatar
+ 3
Draw it on a postit and stick it on the monitor? Or you can copy it from https://en.m.wikipedia.org/wiki/Degree_symbol °
25th Sep 2020, 4:29 PM
Tibor Santa
Tibor Santa - avatar
+ 2
Grabiel it depends on for what language UNICODE U+000B0 HEX CODE ° HTML CODE ° HTML ENTITY ° CSS CODE \00B0
25th Sep 2020, 4:56 PM
BroFar
BroFar - avatar