Hello,
I'm trying to convert a string which includes raw UCS2 unicode characters into a Python unicode object.
For example:
The string: "05E905DC05D505DD"
The result I need:
u'\u05E9\u05DC\u05D5\u05DD'
What's the function I should use ?
Thanks,