I\'ve been looking through the Python Cookbook (2nd Edition) to learn how to process strings and characters.
I wanted to try converting a number into its
In Python 3, you just use chr:
>>> chr(10000) '✐'