I have a list of string of gujarati unicode characters and i want to convert them to unicode. But the problem is the escape character('').
for eg
a="\\u0aec"
print(type(a))
# <type 'str'>
How to convert it into Unicode which is ('\u0aec')?
Also don't think about using .encode('utf-8')
as it will just make it a unicode string and not unicode characters.