JSON to XML Converter
Convert JSON data to well-formed XML instantly.
JSON Input
XML Output
<?xml version="1.0" encoding="UTF-8"?>
<root>
<person>
<name>Alice</name>
<age>30</age>
<active>true</active>
<hobbies>
<item>reading</item>
<item>coding</item>
</hobbies>
<address>
<city>Seoul</city>
<country>Korea</country>
</address>
</person>
</root>