Our Network


Coming Soon


Coming Later

CSV to XML Converter

world's simplest csv tool

Free online CSV to XML converter. Just upload your CSV file in the form below and it will automatically get converted to an XML document. In the tool options, you can adjust the format of the input CSV by specifying its field delimiter and quote character, as well as skip commented records. Additionally, you can customize the XML output format. Created by programmers from team Browserling.

᠎᠎᠎          Tool Options

Input CSV Format

Symbol that separates CSV
columns.
Character used to quote CSV
fields.
Character(s) used to comment
out CSV lines.

Conversion Options

Turn the headers from the
first line of CSV into XML
element names.
Skip empty lines in CSV data.
Prefix the output with an
XML meta tag.

XML Indentation

Use two spaces to indent
nested XML tags.
Use a tab to indent nested
XML tags.
Output single-line XML without
indentation (minify XML).

What Is a CSV to XML Converter?

This tool transforms Comma Separated Values (CSV) data into Extensible Markup Language (XML). Both CSV and XML are data exchange formats but they differ in structure. CSV is a simple tabular data format with rows and columns that uses a delimiter character (such as a comma) to separate data elements. XML is a hierarchical data format that allows data to be structured. Additionally, it supports nested data representation using tags and attributes. As a CSV file may not always use a comma as a column delimiter (for example, it can use a semicolon or a pipe symbol), you can customize the tool to work with another delimiter symbol in the options. Also, if the CSV data uses an unusual quote character to wrap fields, you can specify this new quote symbol in the options. To filter out unnecessary information in CSV, you can skip lines that start with comment characters by specifying them in the options. Comments often start with the hash "#" or a double-slash "//" symbol. If the first row of CSV data contains column headers, you can use this row to generate XML element names. The "Convert Headers" checkbox controls if XML elements use CSV columns or not. The "Ignore Empty Lines" checkbox allows the tool to ignore empty lines present in the CSV data during the conversion process. Several other options control the format of the XML document. The "Generate XML Meta Tags" option prefixes the output with the XML meta tag. This meta tag provides additional information about XML's version and encoding, making it simpler to parse in other programs. The converted XML can be printed as a compact single-line format (minified XML) or as a more visually readable structure with indentation in the form of spaces or tabs. To convert XML back to CSV, you can use our Convert XML to CSV tool. Csv-abulous!


CSV to XML Converter Examples

Click to try!

Convert Transport Data in CSV Format to XML Format

This example converts transport data from a CSV format to an XML format. Each CSV field is converted into a separate XML element, wrapped in opening and closing XML tags. To minimize output data size, it produces XML without indentation.

Bus,Line 101,30min Train,Red Line,40min Taxi,Expressway,15min
<root><row-0>Bus</row-0><row-0>Line 101</row-0><row-0>30min</row-0><row-1>Train</row-1><row-1>Red Line</row-1><row-1>40min</row-1><row-2>Taxi</row-2><row-2>Expressway</row-2><row-2>15min</row-2></root>
Required options
These options will be used automatically if you select this example.
Symbol that separates CSV
columns.
Character used to quote CSV
fields.
Character(s) used to comment
out CSV lines.
Turn the headers from the
first line of CSV into XML
element names.
Skip empty lines in CSV data.
Prefix the output with an
XML meta tag.
Output single-line XML without
indentation (minify XML).

CSV with a Non-Standard Delimiter

In this example, we're working with a CSV file, which uses a non-standard field delimiter. Instead of the typical comma, a vertical line symbol "|" is used to separate the fields. To convert such data into XML, we specify the vertical line symbol in the delimiter option. Additionally, we enable the header conversion mode, which turns values from the first CSV row into XML tag names.

type|size|color T-shirt|30|Blue Jeans|32|Black
<?xml version="1.0" encoding="UTF-8" ?> <root> <row-0> <type>T-shirt</type> <size>30</size> <color>Blue</color> </row-0> <row-1> <type>Jeans</type> <size>32</size> <color>Black</color> </row-1> </root>
Required options
These options will be used automatically if you select this example.
Symbol that separates CSV
columns.
Character used to quote CSV
fields.
Character(s) used to comment
out CSV lines.
Turn the headers from the
first line of CSV into XML
element names.
Skip empty lines in CSV data.
Prefix the output with an
XML meta tag.
Use two spaces to indent
nested XML tags.

Turn Fruit CSV Data into XML Data

In this example, we transform CSV data about fruits and their caloric content into XML data. Since the first CSV row serves as the names of columns, we activate the option to convert columns into XML element names. Additionally, we skip empty CSV lines and ignore lines starting with two slashes "//" as they are comments. For better readability, the XML tags in the output document are indented by tabs.

fruit,calories,proteins,carbohydrates,fats,sugars Apple,95,0.5,25,0.3,19 Banana,105,1.3,27,0.4,14 Orange,62,1.2,15,0.2,9 //Mango,60,0.8,15,0.4,14
<?xml version="1.0" encoding="UTF-8" ?> <root> <row-0> <fruit>Apple</fruit> <calories>95</calories> <proteins>0.5</proteins> <carbohydrates>25</carbohydrates> <fats>0.3</fats> <sugars>19</sugars> </row-0> <row-1> <fruit>Banana</fruit> <calories>105</calories> <proteins>1.3</proteins> <carbohydrates>27</carbohydrates> <fats>0.4</fats> <sugars>14</sugars> </row-1> <row-2> <fruit>Orange</fruit> <calories>62</calories> <proteins>1.2</proteins> <carbohydrates>15</carbohydrates> <fats>0.2</fats> <sugars>9</sugars> </row-2> </root>
Required options
These options will be used automatically if you select this example.
Symbol that separates CSV
columns.
Character used to quote CSV
fields.
Character(s) used to comment
out CSV lines.
Turn the headers from the
first line of CSV into XML
element names.
Skip empty lines in CSV data.
Prefix the output with an
XML meta tag.
Use a tab to indent nested
XML tags.

Pro tips Master online csv tools

You can pass input to this tool via ?input query argument and it will automatically compute output. Here's how to type it in your browser's address bar. Click to try!

https://onlinetools.com/csv/convert-csv-to-xml?input=Bus%2CLine%20101%2C30min%0ATrain%2CRed%20Line%2C40min%0ATaxi%2CExpressway%2C15min&char-delimiter=%252C&char-comments=%2523&char-quote=%2522&convert-headers=false&convert-skip-empty=false&convert-meta=false&formatting-none=true

All CSV Tools

Didn't find the tool you were looking for? Let us know what tool we are missing and we'll build it!

Quickly convert a CSV file to a JSON data structure.

Quickly convert a JSON data structure to a CSV file.

Quickly convert a CSV file to an XML file.

Quickly convert an XML file to a CSV file.

Quickly convert a CSV file to a YAML file.

Quickly convert a YAML file to a CSV file.

Quickly convert a CSV file to a TSV file.

Quickly convert a TSV file to a CSV file.

Quickly convert a CSV file to evenly aligned text columns.

Quickly convert text columns to a CSV file.

Quickly encode CSV to base64.

Quickly decode base64 to CSV.

Quickly convert CSV to URL-encoding.

Quickly decode CSV from URL-encoding.

Quickly change the CSV column delimiter to a new symbol.

Quickly prepend columns at the beginning of a CSV file.

Quickly append one or more new columns at the end of a CSV file.

Quickly insert one or more new columns anywhere in a CSV file.

Quickly export one or more columns from a CSV file.

Quickly replace any column in a CSV file with a new one.

Quickly delete one or more columns from a CSV file.

Quickly swap two columns in a CSV file.

Quickly exchange columns with rows in a CSV file.

Quickly exchange rows with columns in a CSV file.

Quickly transpose a CSV file.

Quickly truncate columns in a CSV file.

Quickly left-trim and right-trim column values in a CSV file.

Quickly sort data in one or more CSV columns.

Quickly remove double quotes from all CSV fields.

Quickly wrap all CSV fields in double quotes.

Quickly change the character that CSV fields are wrapped in.

Quickly make sure the given CSV file doesn't have errors.

Quickly find rows and columns in CSV that are missing values.

Quickly fill missing CSV values with placeholder values.


Coming Soon

These CSV tools are on the way!
Edit CSV in the Browser

Edit the contents of a CSV file in a neat editor.

Deduplicate CSV Data

Remove duplicate rows in a CSV file.

Print CSV Statistics

Display detailed information about a CSV file.

Convert CSV to HTML

Convert a CSV file to an HTML table.

Convert HTML to CSV

Convert an HTML table to a CSV file.

Convert CSV to Markdown

Convert a CSV file to a Markdown table.

Convert Markdown to CSV

Convert a Markdown table to a CSV file.

Convert CSV to ASCII Table

Draw an ASCII table from CSV data.

Convert CSV to ANSI Table

Draw an ANSI table from CSV data.

Convert CSV to Unicode Table

Draw a Unicode table from CSV data.

Convert CSV to PDF

Convert CSV to a PDF document.

Convert PDF to CSV

Extract data from a PDF and create a CSV file.

Convert CSV to a Screenshot

Create a screenshot of CSV data.

Convert CSV to an Image

Draw a CSV file as a PNG, JPG or GIF picture.

Convert Image to CSV

Extract data from an image and create a CSV file.

Convert CSV to Excel

Convert a CSV file to an Excel spreadsheet.

Convert Excel to CSV

Convert an Excel spreadsheet to a CSV file.

Convert CSV to vCard

Convert a CSV file to a vCard file.

Convert vCard to CSV

Convert a vCard file to a CSV file.

Convert CSV to LaTeX

Convert CSV to a LaTeX table.

Convert CSV to SQL

Generate SQL insert queries from a CSV file.

Convert SQL to CSV

Create a CSV file from SQL query results.

Convert CSV to qCSV

Convert a CSV file to a qCSV (quoted CSV) file.

Convert qCSV to CSV

Convert a qCSV (quoted CSV) file to a CSV file.

Convert CSV to INI

Convert a CSV file to an INI file.

Convert INI to CSV

Convert an INI file to a CSV file.

Convert CSV to JSONL

Convert a CSV file to a JSONL (JSON Lines) file.

Convert JSONL to CSV

Convert a JSONL (JSON Lines) file to a CSV file.

Convert CSV to TXT

Convert a CSV file to a plain text file.

Convert TXT to CSV

Convert a plain text file to a CSV file.

Convert CSV to 0SV

Convert a CSV file to a null-separated values file (0SV).

Convert 0SV to CSV

Convert a null-separated values file (0SV) to a CSV file.

Convert CSV to SSV

Convert a CSV file to a semicolon-separated file (SSV).

Convert SSV to CSV

Convert a semicolon-separated file (SSV) to a CSV file.

Convert CSV to HSV

Convert a CSV file to a hash-separated file (HSV).

Convert HSV to CSV

Convert a hash-separated file (HSV) to a CSV file.

Convert CSV to PSV

Convert a CSV file to a pipe-separated file (PSV).

Convert PSV to CSV

Convert a pipe-separated file (PSV) to a CSV file.

Convert CSV to SQLite

Create an SQLite database from the given CSV file.

Convert SQLite to CSV

Export tables from an SQLite database as CSV files.

Convert CSV to GeoJSON

Convert a CSV file to a GeoJSON file.

Convert GeoJSON to CSV

Convert a GeoJSON file to a CSV file.

Merge CSV Files

Merge together two or more CSV files.

Compare Two CSV Files

Visually show the differences between two CSV files.

Diff Two CSV Files

Run the diff algorithm on two CSV files.

Find Data in CSV

Find CSV cells that contain certain data.

Filter CSV Cells

Return data in a CSV file that matches a pattern.

Slice CSV

Extract a slice from a CSV file.

Cut CSV

Cut a fragment from a CSV file.

Rotate CSV Columns

Move CSV columns to the left or right.

Rotate CSV Rows

Move CSV data rows up or down.

Sort CSV Rows

Sort the data in one or more CSV rows.

Shuffle CSV Columns

Randomly change the positions of CSV columns.

Shuffle CSV Rows

Randomly change the order of CSV rows.

Shuffle CSV Values

Randomly change the order of all CSV values.

Rename CSV Columns

Change the name of CSV columns.

Create a Random CSV

Generate a random CSV of any size.

Create an Empty CSV File

Generate a CSV file that contains nothing.

Create a Large CSV File

Generate a large CSV file for testing.

Create a Custom CSV File

Generate a custom CSV file with m rows and n columns.

Delete Empty CSV Columns

Remove CSV columns that are completely empty.

Delete Empty CSV Rows

Remove CSV rows that are completely empty.

Delete Empty CSV Values

Remove all fields in a CSV file that are empty.

Delete Empty CSV Lines

Remove all empty lines in a CSV file.

Remove CSV Separator

Delete the comma separator from CSV files.

Remove Extra CSV Commas

Delete extra commas around CSV values.

Delete CSV Comments

Delete comments (lines starting with # or //) from CSV files.

Delete CSV Header

Delete the column header from a CSV file.

Delete First CSV Line

Delete the first line from a CSV file.

Compress a CSV File

Minify a CSV file and remove unnecessary whitespaces.

Optimize CSV File Size

Reduce the file size of a CSV file.

Change CSV Encoding

Change the character encoding of a CSV file to UTF8 or ISO-8859-1.

Add Extra Spaces in CSV

Add extra spaces between CSV columns.

Convert CSV to a Matrix

Convert a CSV file to an m-by-n matrix.

Convert CSV to an Array of Arrays

Convert a CSV file to an array of arrays of fields.

Convert an Array of Arrays to CSV

Convert an array of arrays of fields to a CSV file.

Convert CSV Columns to a List

Create a list from one or more CSV columns.

Convert CSV Rows to a List

Create a list from one or more CSV rows.

Convert CSV Columns to an Array

Create an array from one or more CSV columns.

Convert CSV Rows to an Array

Create an array from one or more CSV rows.

Find CSV Dimensions

Find the number of rows and columns of a CSV file.

Count CSV Columns

Find the number of columns in a CSV file.

Count CSV Rows

Find the number of rows in a CSV file.

Sum CSV Columns

Find the sum of CSV columns.

Sum CSV Rows

Find the sum of CSV rows.

Average CSV Columns

Find the average value of CSV columns.

Average CSV Rows

Find the average value of CSV rows.

Add Color to CSV

Use different colors for CSV data, quotes, and commas.

Animate a CSV File

Animate CSV data by showing column after column.

Fix a Broken CSV

Automatically fix a broken CSV.

Add Errors to CSV

Introduce random errors to a CSV file for fuzz testing.

Anonymize CSV Data

Hide personal or sensitive information in a CSV file.

Censor CSV Data

Mask data in a CSV file.

Hide a Message in a CSV

Hide a secret message in a CSV.

Encrypt CSV

Encrypt a CSV file and hide information in it.

Decrypt CSV

Decrypt a previously encrypted CSV file and make it readable.

Visualize CSV

Create a visual drawing that shows the CSV structure.

Create a CSV File

Create a new CSV file in the browser.

Unleash Zalgo on CSV

Distort a CSV file by infusing it with Zalgo characters.

Purge Zalgo from CSV

Neutralize the chaotic Zalgo and restore CSV integrity.

CSV Viewer

Preview the contents of a CSV file in an interactive editor.


Subscribe!

Subscribe to our updates. We'll let you know when we release new tools, features, and organize online workshops.

Enter your email here


Feedback. We'd love to hear from you! 👋