CSV/TSV converter (batch delimiter conversion)

Convert CSV and TSV (comma ↔ tab) in one click. Quoted fields and multiline cells are handled safely.

No server upload. Conversion runs locally in your browser without Web Workers.

No server upload
Double-quote aware
Multiline cells supported (large files may be slower)

CSV/TSV conversion tool

Pick a direction, paste data or load a file, then convert and copy/download immediately.

How to convert delimiters

  1. Paste CSV/TSV or choose a file.
  2. Choose CSV→TSV or TSV→CSV, or use Auto Detect if you are unsure.
  3. Click Convert, then copy or download the result.

Tips for avoiding conversion mistakes

  • Commas and tabs inside quotes are part of the cell, not delimiters.
  • Cells with embedded line breaks may look like extra rows and still be valid.
  • If Excel shows garbled text, try enabling UTF-8 BOM.

Examples

Quoted comma

Input

"a,b",c

Expected result

The comma inside quotes remains part of a single cell.

Multiline cell

Input

"line1\nline2",ok

Expected result

Line breaks inside quotes are preserved.

Empty cell

Input

a,,c

Expected result

Empty fields are preserved.

FAQ

How are commas inside double quotes handled?

The CSV parser handles them correctly. In "a,b", the comma belongs to one cell; it is not a delimiter.

Which encoding is supported?

UTF-8 is assumed. If Excel renders garbled text, enable “Add UTF-8 BOM for Excel.”

Are multiline cells supported?

Yes. Multiline cells are supported. Large datasets may take longer, so converting a file and downloading the result is recommended.

Is data sent to a server?

No. Conversion runs entirely in your browser.

What if conversion fails?

The input delimiter may not be what you expect. Try Auto Detect or set it manually in Advanced options.