How to Use JSON to XML Converter

Step 1: Prepare Your JSON Data

Before conversion, ensure your JSON data is properly formatted. Here's a valid JSON example:

{
    "user": {
        "name": "John Doe",
        "age": 30,
        "email": "[email protected]"
    }
}
                

Step 2: Paste JSON Data

Copy your JSON data and paste it into the input textarea on the left side of the converter.

Step 3: Convert

Click the "Convert to XML" button to transform your JSON into XML format.

Step 4: Get Your XML

Your converted XML will appear in the output textarea. You can copy it using the "Copy XML" button.

Advanced Usage Tips

  • Arrays are converted to repeated elements
  • Nested objects maintain their hierarchy
  • Special characters are properly escaped
  • The output is automatically formatted with proper indentation

Common Examples

Simple Object

// JSON Input
{
    "message": "Hello World",
    "status": 200
}

// XML Output


    Hello World
    200

                    

Array Handling

// JSON Input
{
    "fruits": ["apple", "banana", "orange"]
}

// XML Output


    
        apple
        banana
        orange