I made a JSON request that gives me a string that uses Unicode character codes that looks like:
s = \"\\u003Cp\\u003E\"
And I want to conve
If the data came from JSON, the json module should already have decoded these escapes for you:
json
>>> import json >>> json.loads('"\u003Cp\u003E"') u''
'