JSON to XML Converter
This tool will help to convert JSON to XML.
JSON
XML DownloadCopyCopied
About JSON
JSON(JavaScript Object Notation) is an open-standard file format that uses human-readable text to transmit data objects consisting of attribute–value pairs and array data types (or any other serializable value). It is a very common data format used for asynchronous browser–server communication, including as a replacement for XML in some AJAX-style systems.
About XML
XML(Extensible Markup Language) is a markup language that defines a set of rules for encoding documents in a format that is both human-readable and machine-readable. The W3C's XML 1.0 Specification and several other related specifications—all of them free open standards—define XML.
Converting JSON to XML
Example:
{
"Insurances": {
"AutoInsurance": "Protects the policyholder against financial loss.",
"GapInsurance": "Covers the excess amount on your auto loan.",
"HealthInsurance": "Cover the cost of medical treatments."
},
"Property": {
"House": "val1",
"Land": {
"Land1": "Land1-val",
"Land2": "Land2-val"
},
"Car": "val3"
},
"Worth": [
94866,
51456,
186489,
91846,
6146
]
}
==========
<root>
<Insurances>
<AutoInsurance>
Protects the policyholder against financial loss.
</AutoInsurance>
<GapInsurance>
Covers the excess amount on your auto loan.
</GapInsurance>
<HealthInsurance>
Cover the cost of medical treatments.
</HealthInsurance>
</Insurances>
<Property>
<House>
val1
</House>
<Land>
<Land1>
Land1-val
</Land1>
<Land2>
Land2-val
</Land2>
</Land>
<Car>
val3
</Car>
</Property>
<Worth>
94866
</Worth>
<Worth>
51456
</Worth>
<Worth>
186489
</Worth>
<Worth>
91846
</Worth>
<Worth>
6146
</Worth>
</root>