hia guys i was just wondering if anyone can tell me if its possable to get unicode from a raw_input command. Im trying to put together a small piece of code to help me change decompyled russian text back to readable text, the piece of code im using at the moment is:
>>> a='\xd0\x92\xd1\x8b\xd0\xb9\xd1\x82\xd0\xb8'
>>> print unicode(a,'utf-8')
Выйти
>>>
and although this works fine i would like to use the raw_input command with it so i could just run the script and enter the string i want to read rather than having to edit the script all the time.
Any help would much appreciated thanks