CSV ↔ XML Converter

Convert between CSV and XML formats — fully in-browser, no upload

Input CSV

Output XML

<?xml version="1.0" encoding="UTF-8"?>
<rows>
  <row>
    <name>Alice</name>
    <email>[email protected]</email>
    <age>30</age>
    <city>New York</city>
  </row>
  <row>
    <name>Bob</name>
    <email>[email protected]</email>
    <age>25</age>
    <city>London</city>
  </row>
  <row>
    <name>Charlie</name>
    <email>[email protected]</email>
    <age>35</age>
    <city>Paris</city>
  </row>
</rows>