Printing degree symbol (°) doesn't work for me (using Python 3.7). I am using Windows 10, Sublime Text 3 and I use the following encoding on top of the file I am working with:
# -*- coding: utf8 -*-
It, however, works when built with Python 2.7.
An example:
temperature = str(26) + '°C'
print(temperature)
outputs 26�C
in Python 3.7 and 26°C
in Python 2.7.
Any ideas?