Format and beautify XML data for readability and debugging
<root><item id="1">Value</item></root>
<?xml version="1.0" encoding="UTF-8"?> <root> <item id="1">Value</item> </root>
<catalog><book id="1"><title>XML Guide</title><author>John Doe</author></book></catalog>
<catalog>
<book id="1">
<title>XML Guide</title>
<author>John Doe</author>
</book>
</catalog>
<root xmlns:ns1="http://example.com"> <ns1:element>Content</ns1:element> </root>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetUser>
<UserId>123</UserId>
</GetUser>
</soap:Body>
</soap:Envelope>