XML to JSON converter
This tool will help to convert XML to JSON.
XML
JSON DownloadCopyCopied
About XML
The design goals of XML emphasize simplicity, generality, and usability across the Internet. It is a textual data format with strong support via Unicode for different human languages. Although the design of XML focuses on documents, the language is widely used for the representation of arbitrary data structures such as those used in web services.
About JSON
JSON is a language-independent data format. It was derived from JavaScript, but as of 2017, many programming languages include code to generate and parse JSON-format data. The official Internet media type for JSON is application/json. JSON filenames use the extension .json.
Converting XML to JSON
Example:
<Travel>
<Adventure-travel>
To go to foresets, rivers and mountainous
</Adventure-travel>
<Business-travel>
To do some business
</Business-travel>
<Religious-travel>
To visit the holly places
</Religious-travel>
<Health-travel>
To do a plastic surgery, check your health, or to do some tests.
</Health-travel>
</Travel>
==============
{
"Travel": {
"Adventure-travel": "To go to foresets, rivers and mountainous",
"Business-travel": "To do some business",
"Religious-travel": "To visit the holly places",
"Health-travel": "To do a plastic surgery, check your health, or to do some tests."
}
}