I'd like to be able to use unicode in my python string. For instance I have an icon:
icon = '▲'
print icon
which should create icon = '▲'
but instead it literally returns it in string form: ▲
How can I make this string recognize unicode?
Thank you for your help in advance.