Object to XML
Input
{"name":"51tools","items":[{"id":1}]}
Output
<?xml version="1.0" encoding="UTF-8"?>
<root>
<name>51tools</name>
<items>
<item>
<id>1</id>
</item>
</items>
</root>
Convert JSON data to structured XML in your browser.
Convert JSON data into structured XML for API debugging, data exchange, and format migration.
{"name":"51tools","items":[{"id":1}]}
<?xml version="1.0" encoding="UTF-8"?>
<root>
<name>51tools</name>
<items>
<item>
<id>1</id>
</item>
</items>
</root>
Conversion runs entirely in your browser and does not upload JSON.