In Python:
>>> "\N{BLACK SPADE SUIT}"
'♠'
>>> "\u2660"
'♠'
Now, let’s say I have a character which I don’t know the name or number for. Is there a Python function which gives this information like this?
>>> wanted_function('♠')
["BLACK SPADE SUIT", "u2660"]
You may find the unicodedata module handy: