CkPython
CkPython
Decode HTML Entity Encoded JSON
See more JSON Examples
Decodes an HTML entity encoded string to JSON.Chilkat CkPython Downloads
import chilkat
success = False
sb = chilkat.CkStringBuilder()
success = sb.Append("{"xyz": "abc"}")
sb.EntityDecode()
# This is a test comment;
print(sb.getAsString())
# Output is:
# {"xyz": "abc"}