Is there a way to "insert" a Unicode character into a string in python? For example,
>>>import unicode
>>>string = u'This is a full block: %s' % (unicode.charcode(U+2588))
>>>print string
This is a full block: █
|
|
Yes, with unicode character escapes:
|
|||||||||
|
|
You can use
Prints
|
|||
|
|
|
You can use \u to escape a Unicode character code:
which defines a string containing the space character. |
|||
|
|