Convert JSON to XML with proper formatting. Handles nested objects, arrays, and special characters.
<?xml version="1.0" encoding="UTF-8"?> <catalog> <book> <id>bk001</id> <author>Alice Martin</author> <title>Clean Code Patterns</title> <genre>Technology</genre> <price>29.99</price> <publishDate>2024-01-15</publishDate> <description>A guide to writing maintainable code.</description> </book> <book> <id>bk002</id> <author>Bob Chen</author> <title>Distributed Systems</title> <genre>Technology</genre> <price>39.99</price> <publishDate>2024-03-20</publishDate> <description>Deep dive into distributed architectures.</description> </book> </catalog>