JSONXML

Convert data in JSON format to XML format. As in the example below, paste JSON on the left and the XML result appears instantly on the right.

Example

JSON
[
  { "id": 1, "name": "Ada", "role": "admin" },
  { "id": 2, "name": "Linus", "role": "editor" }
]
XML
<?xml version="1.0" encoding="UTF-8"?>
<rows>
  <row>
    <id>1</id>
    <name>Ada</name>
    <role>admin</role>
  </row>
  <row>
    <id>2</id>
    <name>Linus</name>
    <role>editor</role>
  </row>
</rows>
Open this converter

How to Convert

  1. Select JSON as the source format and XML as the target format.
  2. Paste your JSON data into the input box on the left.
  3. Copy or download the XML result generated on the right.

Notes

Related Conversions