About this tool
Converts basic JSON structures to XML (using the parent key as the repeated element name for arrays) and basic XML back to JSON (using element structure and text content). This is a simple, convention-based conversion, not a full implementation of any particular JSON-XML mapping standard — attributes are ignored when converting from XML, and deeply irregular or mixed-content XML may not round-trip perfectly.
Examples
- {"user":{"name":"Asha","tags":["a","b"]}} → <root><user><name>Asha</name><tags>a</tags><tags>b</tags></user></root>