I have a method where I receive data from 3rd party something like this
def func(**kwagrs):
print kwagrs
output
{'payload': u'{"id":"50b4f4b3e319586b10230f68d21f5edb","data":{"message":"message is \\u00a3 150 \\u2192\\u00c5\\u25024\\u00e9","length":47}}'}
How to convert \\u00a3 to £ in python
also, you have notice value type for the payload is Unicode not dictionary or JSON
I tried to find the similar issue in StackOverflow but didn't find any solution.