XML documents can be easily converted into JSON documents with this tool. XML is more powerful in terms of expression than JSON - therefore it is not always possible to perform an exact conversion. For example, attributes used in XML elements are mapped within the resulting JSON object using elements called "@attributes".
Results will be displayed here.
Example for the conversion of XML to JSON
Input
<?xml version="1.0"?>
<document>
<title>XML to JSON Converter</title>
<language>EN</language>
</document>
Output
{
"title": "XML to JSON Converter",
"language": "EN"
}