H headingwest Member Licensed User Longtime User Aug 12, 2013 #1 Hi, I'm trying to put a degrees symbol (superscript small o) into a label. The ASCII is 248 but Chr(248) doesn't give me this symbol. Any ideas? Thanks for your help.
Hi, I'm trying to put a degrees symbol (superscript small o) into a label. The ASCII is 248 but Chr(248) doesn't give me this symbol. Any ideas? Thanks for your help.
NJDude Expert Licensed User Longtime User Aug 12, 2013 #2 Take a look at the RichString library. Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Aug 12, 2013 #3 It is 0x00B0 (176): B4X: Label1.Text = "180" & Chr(0x00B0) http://en.wikipedia.org/wiki/Degree_symbol Upvote 0
It is 0x00B0 (176): B4X: Label1.Text = "180" & Chr(0x00B0) http://en.wikipedia.org/wiki/Degree_symbol