Forum: Python Sep 20th, 2006 |
| Replies: 6 Views: 2,128 |
Forum: Python Sep 20th, 2006 |
| Replies: 6 Views: 2,128 Re: Unicode ord and unichr Ok thanx, this has helped me understand the problem and partially solve it, however, there is an additional problem.
When i concatate several unicoded characters like this:
a =... |
Forum: Python Sep 18th, 2006 |
| Replies: 6 Views: 2,128 Unicode ord and unichr Hi!
How can i derive the used integer from variable a, when i use following code:
a = unichr(275).encode('utf8')
When i try this:
print ord(a)
It raises an error... |