suppose I have the string
test
'\\u0259'
Note the escaped backslash.
How do I convert it to the respective unicode string?
suppose I have the string
test
'\\u0259'
Note the escaped backslash.
How do I convert it to the respective unicode string?
 
    
     
    
    >>> print('test \\u0259'.decode('unicode-escape'))
test ə
