Degree symbol

Typically you can use ALT+176 for the ° character.

In an ASCII C string its an extended character, but you can include it using the hex code for it:

      LcdDisplay.print("\xb0");   //º (0xB0 / 176)
      LcdDisplay.print("C");