Sample code for 30+ languages & platforms
AutoIt

Decode HTML Entity Encoded JSON

See more JSON Examples

Decodes an HTML entity encoded string to JSON.

Chilkat AutoIt Downloads

AutoIt
Local $bSuccess = False

$oSb = ObjCreate("Chilkat.StringBuilder")

$bSuccess = $oSb.Append("{"xyz": "abc"}")

$oSb.EntityDecode()

; This is a test comment;
ConsoleWrite($oSb.GetAsString() & @CRLF)

; Output is:

; {"xyz": "abc"}