Skip to content
My Tiny Utils

Search tools

Type to find a tool, then press Enter to open it.

CSV Delimiter Converter

Convert CSV between comma, semicolon, tab, and pipe delimiters with correct re-quoting — quoted fields and embedded newlines survive intact.

Processed locally in your browser — nothing is uploaded.

0 characters

Converted CSV

Output appears here…

About CSV Delimiter Converter

Change a CSV file's delimiter without breaking it. A simple find-and-replace corrupts any file with quoted fields; this tool actually parses the CSV (quotes, escaped quotes, embedded newlines and delimiters), then re-serializes it with the new delimiter, re-quoting exactly the fields that need it.

Common uses

  • Convert a semicolon-separated European export to standard commas
  • Produce a TSV for a tool that requires tab separation
  • Fix a file whose delimiter your spreadsheet app guesses wrong

Example

Input

a,"x,y",c  (comma → tab)

Output

a	x,y	c