Got some issues with ord()
command and Unicode.
I want the decimal number of the entered ASCII letters.
For Example:
ord('ÄÖÜ')
brings me these values: [195, 132, 195, 150, 195, 156]
This is what i want:
Any clues ?
This works for me:
>>> [ord(i) for i in unicode('ÄÖÜ','utf-8')]
[196, 214, 220]