🔍
Desktop App
☀️
⚙️
JSON to XML
Convert JSON content to XML format.
JSON Input
{ "root": { "name": "John", "age": 30, "hobbies": { "item": [ "coding", "reading" ] } } }
XML Output
Copy
<root> <name>John</name> <age>30</age> <hobbies> <item>coding</item> <item>reading</item> </hobbies> </root>