JSON to XML Converter
Convert JSON objects and arrays to well-formed XML. Arrays become repeated elements; objects become nested tags.
JSON to XML Conversion Rules
- JSON object keys become XML element names
- JSON arrays become repeated
<item>elements under the parent tag - Null values are represented with a
null="true"attribute - Special characters in values are XML-escaped (
&,<, etc.) - Keys that start with numbers or contain spaces are prefixed with
_