Degrees symbol

Is there a way to write a design symbol? I successfully pulled some data in from Excel that includes the degree symbol, but I also want to write that symbol out.
image

So like this?
“North 78 degrees 19 minutes 38.0 seconds East”?

I need “degrees” as the symbol like it is shown in my original post. Basically, a superscript “o”.

Press Alt and type 0176 (Windows) I dont know for Mac

Oh right, sorry.

as @Marcel_Rijsmus mentioned. You are looking for the ascii code of the degrees symbol

So either type ALT+0176 in codeblock or go with a python convert.
OUT = chr(IN[0])image