CSV Tools
CSV tools convert delimited records between CSV, JSON, XML and TSV, and help you work out what a spreadsheet export actually contains. They handle the details that break naive conversions: quoted fields containing commas, embedded newlines, custom delimiters, and header rows. Conversions run in your browser, so customer exports and internal reports stay on your machine.
CSV is the format every system can export and no two systems agree on. The delimiter might be a comma, a semicolon or a tab. Fields may or may not be quoted. A header row may or may not exist. Embedded newlines inside a quoted field routinely break parsers written in an afternoon.
The converters here use a proper CSV parser rather than splitting on commas, so quoted fields, escaped quotes and multi-line values survive the round trip. Each tool exposes the delimiter and header options rather than guessing silently.
CSV and JSON
2 toolsThe most common pairing: spreadsheet exports in, API payloads out, and back again.
CSV and XML
2 toolsFor systems and legacy integrations that still speak XML.
Clean and reshape rows
3 toolsCut a wide export down, de-duplicate it and put it in order.
Delimiters and spreadsheets
4 toolsSwitch between comma and tab separated data, and translate spreadsheet column references.
- CSV to TSV Converter Convert comma-separated data to tab-separated values. In your browser
- TSV to CSV Converter Convert tab-separated data to comma-separated CSV. In your browser
- Excel Column Converter Convert between column letters (AB) and column numbers (28). In your browser
- CSV to Markdown Table Turn a spreadsheet export into a Markdown table. In your browser
What people use these for
- Convert a CRM or analytics export into JSON to seed a test database.
- Turn an API response into CSV so a non-technical colleague can open it in Excel.
- Switch a semicolon-delimited European export to standard comma-separated CSV.
- Convert CSV to TSV when a downstream tool chokes on commas inside quoted fields.
- Work out which spreadsheet column number "AZ" refers to when writing an import script.
- Feed a legacy XML-only integration from a modern CSV export.
CSV Tools: frequently asked questions
Do these converters handle commas inside quoted fields?
Can I use a semicolon or tab instead of a comma?
What happens if my CSV has no header row?
Are my spreadsheet exports uploaded anywhere?
Why do my leading zeros disappear?
Related topics
All tools →Last reviewed 7 August 2026.