JSON to XML Converter - Free Online JSON Converter


JSON to XML Converter






Note:
Your file size should not exceed the allowed limit (20MB).
Encrypted file is not accepted

"If you encounter any issues while using our online tools, please report it about the issues. It will help us in resolving the issues as soon as possible. Your suggestions or feedbacks are very helpful to improve the website. We appreciate your Support!.



About JSON to XML Converter Tool


Our JSON to XML Converter is one of the best online JSON converter that helps users to convert JSON data to XML format online. This JSON Converter is free and easy to use online JSON converter. If you are looking for JSON Converter online for free, Our tool would be perfect tool for such data conversion to XML from JSON data.


How to Use?


Our JSON to XML Converter is very user friendly online converter that provides two options to users who need to convert their JSON data to XML formats. Users can either upload their entire JSON file using the upload box by choosing the file from their local system or they can just copy and paste the JSON data to the text box provided. They can use the button "Convert JSON to XML" for XML format from JSON data.

Sample JSON input:
{
    "courses": [
        {
            "title": "Introduction to Finance",
            "duration": "4 weeks",
            "price": 199.99,
            "category": "Finance"
        },
        {
            "title": "Advanced Data Science",
            "duration": "8 weeks",
            "price": 299.99,
            "category": "Data Science"
        },
        {
            "title": "Effective Teaching Strategies",
            "duration": "6 weeks",
            "price": 149.99,
            "category": "Education"
        },
        {
            "title": "Personal Finance Management",
            "duration": "5 weeks",
            "price": 99.99,
            "category": "Finance"
        },
        {
            "title": "Introduction to Programming",
            "duration": "10 weeks",
            "price": 249.99,
            "category": "Computer Science"
        }
    ]
}
    

If the JSON data is formatted to XML successfully, Users would get the converted XML format in the text box. This will help the users to verify the converted xml output. If they want, easily output can be copied or they can use the download file button to download the converted XML format from JSON data to their local system.

Sample XML Output:
<?xml version="1.0" encoding="UTF-8" ?>
<root>
    <courses type="list">
        <item type="dict">
            <title type="str">Introduction to Finance</title>
            <duration type="str">4 weeks</duration>
            <price type="float">199.99</price>
            <category type="str">Finance</category>
        </item>
        <item type="dict">
            <title type="str">Advanced Data Science</title>
            <duration type="str">8 weeks</duration>
            <price type="float">299.99</price>
            <category type="str">Data Science</category>
        </item>
        <item type="dict">
            <title type="str">Effective Teaching Strategies</title>
            <duration type="str">6 weeks</duration>
            <price type="float">149.99</price>
            <category type="str">Education</category>
        </item>
        <item type="dict">
            <title type="str">Personal Finance Management</title>
            <duration type="str">5 weeks</duration>
            <price type="float">99.99</price>
            <category type="str">Finance</category>
        </item>
        <item type="dict">
            <title type="str">Introduction to Programming</title>
            <duration type="str">10 weeks</duration>
            <price type="float">249.99</price>
            <category type="str">Computer Science</category>
        </item>
    </courses>
</root>