Format comparison
CSV vs TSV
CSV uses commas; TSV uses tabs. Both are plain-text tables — TSV avoids comma collisions; CSV is what most Export buttons emit.
Decision table
| Feature | CSV | TSV |
|---|---|---|
| Delimiter | Comma (typical) | Tab |
| Comma-in-field pain | High without quoting | Lower |
| Best for | General exports | Paste / tab pipelines |
| Visibility while editing | Commas obvious | Tabs easy to miss |
| Tool defaults | CSV everywhere | More specialized |
Choose CSV when…
- SaaS export buttons
- Tools that only accept CSV
- Sharing with Excel novices
Choose TSV when…
- Fields full of commas
- Bioinformatics / Unix tab pipelines
- Paste-friendly grids
Verdict
Default to CSV unless your pipeline standardizes on tabs or fields are comma-heavy.
Convert between them
Jump straight into a private browser converter — files are not uploaded to a server.
Keep exploring this topic
Stay inside the CSV / TSV knowledge graph — sibling comparisons, best-format guides, and converters — not generic homepage links.
Format hubs & guides
Related comparisons
Best format guides