XML Formatter
Format and beautify XML data with proper indentation and structure.
Elements
Attributes
Characters
Size
XML Formatting Examples
Minified XML:
<root><item id="1"><name>John</name><age>30</age></item></root>
→ Formatted with proper indentation
Formatted XML:
<root>
<item id="1">
<name>John</name>
<age>30</age>
</item>
</root>
→ Clean, readable structure