Is there a way to print superscripts in python. Printing 0 or 2 as a superscript is not a problem but other than those yields normal digits.
For example, if I do:
>>> print("⁰¹²³⁴⁵⁶⁷⁸⁹")
I get
°1²345678?
Well, I seem to find no satisfying answer anywhere on the web. So, please help figure out a way around it...
By the way, I'm using python 3.5 on Windows 10 [32-bit], If that matters :-)
EDIT:
- Could it be detected via Python if a shell supports UTF-8 encoding
- Also, any way to ensure that we get the same output no matter what console we run in?