Convert XML to JSON

This tool converts input from XML to JSON. 2 outputs will be returned, one beautified to ease the reading and the second a compressed JSON format without line breaks or indentation.

Convert JSON to XML



XML stands for Extensible Markup Language. It is a set of rules which format content for be both readable by humans and machines. It is designed mainly for for documents but it is often used to structure data for transfers between servers and web services. The structure is mainly about putting content between tags. The content can also be a set of tags / content.

Example :

<?xml version="1.0" encoding="UTF-8"?>
<section>
	<lastName>John Doe</lastName>
	<firstName>John Doe</firstName>
	<amI>true</amI>
	<age>20</age>
	<mail>
		<type>home</type>
		<address>home@mail.com</address>
	</mail>
	<mail>
		<type>office</type>
		<address>work@mail.com</address>
	</mail>
</section>


 FR     EN  

Copyright 2024 -   Contact us - 2024-03-19 08:54:46