Sample code for 30+ languages & platforms
Perl

Decode HTML Entity Encoded JSON

See more JSON Examples

Decodes an HTML entity encoded string to JSON.

Chilkat Perl Downloads

Perl
use chilkat();

$success = 0;

$sb = chilkat::CkStringBuilder->new();

$success = $sb->Append("{"xyz": "abc"}");

$sb->EntityDecode();

# This is a test comment;
print $sb->getAsString() . "\r\n";

# Output is:

# {"xyz": "abc"}