Free Online XML to JSON Converter Enter XML x <?xml version="1.0" encoding="utf-8"?><note importance="high" logged="true"> <title>Happy</title> <todo>Work</todo> <todo>Play</todo></note> JSON Result { "_declaration": { "_attributes": { "version": "1.0", "encoding": "utf-8" } }, "note": { "_attributes": { "importance": "high", "logged": "true" }, "title": { "_text": "Happy" }, "todo": [ { "_text": "Work" }, { "_text": "Play" } ] }} Description Use this tool to convert XML content into JSON.