How to use Unicode Characters and Special Characters with tKinter and Python. Using special characters in tKinter is super easy.
You just slap a u in front of the thing, then escape out with a backslash, and then type in the unicode characters, like so:
my_label = Label(root, text='41' + u'\u00A2').pack()
Add comment