XML to JSON Converter

Convert XML data into JSON.

Result

Related tools

How it works

  1. 1Paste XML data into the input area.
  2. 2The tool parses it using fast-xml-parser.
  3. 3Converts elements and attributes to JSON structure.
  4. 4Formatted JSON is displayed. Invalid XML shows an error. All processing in browser.

Example

Input: <user><name>Alice</name><age>30</age></user>
Output: {"user":{"name":"Alice","age":"30"}}