Tab Delimiter, Zero Quoting
TSV uses tabs as the delimiter so commas inside fields are ordinary characters — no RFC 4180 quoting overhead, no escaped quotes, and no column misalignment when pasting into tools that split on commas.
500+ fast, free tools. Most run in your browser only; Image & PDF tools upload files to the backend when you run them.
Convert CSV and TSV while preserving quoted fields and escaped quotes.
When data fields contain commas, CSV breaks or requires cumbersome quoting that confuses older tools. TSV uses the tab character as its delimiter, so commas inside fields are never special and the file works cleanly with Linux tools like cut and awk. The converter flips between these formats handling edge cases that break naive implementations: quoted comma-containing fields unwrap properly going CSV to TSV, and fields gaining commas get auto-quoted going TSV to CSV. Header rows are detected and preserved in original column order. Embedded newlines can be escaped, joined, or dropped. Output works directly in Excel with .tsv auto-detection, Google Sheets, BigQuery's TSV importer, and Snowflake bulk load. Because conversion happens in the browser, customer data and HR exports never leave your machine.
TSV uses tabs as the delimiter so commas inside fields are ordinary characters — no RFC 4180 quoting overhead, no escaped quotes, and no column misalignment when pasting into tools that split on commas.
Going CSV to TSV, the parser correctly unwraps quoted fields containing commas or embedded newlines before writing tab-separated output. Going TSV to CSV, fields containing commas are automatically wrapped in RFC 4180 quotes.
The first row is detected as a header and kept at the top of the output in the original column order. Column names are never altered, reordered, or truncated during conversion.
Multi-line cell values (newlines inside quoted CSV fields) can be handled three ways: escape as \n for TSV, join with a space for a flat single-line cell, or drop entirely. The choice depends on whether downstream tools support multi-line TSV.
TSV output with a .tsv extension is auto-detected by Excel and Google Sheets as tab-delimited, skipping the import delimiter wizard entirely. BigQuery and Snowflake TSV importers also accept the output without configuration.
Customer PII, financial records, and HR data exports stay entirely in your browser tab throughout the conversion. No file is uploaded and no data is sent to any server or third-party endpoint during the conversion process.
Input: name,city,note Acme,"New York, NY",Founded 1903 Globex,Springfield,"Multi, line"
Output: name city note Acme New York, NY Founded 1903 Globex Springfield Multi, line
Input: id name note 1 Ada no commas here 2 Alan needs, quoting
Output: id,name,note 1,Ada,no commas here 2,Alan,"needs, quoting"
Input: title,body Hello,"Line one Line two"
Output: title body Hello Line one Line two