How to do it
- Open the editor and drop your .tsv file onto it, or paste the rows straight from wherever you copied them.
- Check the review panel. Cells holding a comma, a quote or a line break are the ones that will need escaping, and they are listed before you export anything.
- Choose Export, pick CSV, and set the line ending you need — LF for anything Unix-shaped, CRLF if a Windows tool is going to read it.
- Save. The file is written by your browser; it never travels.
What usually goes wrong
Commas inside cells
A product name like "Mug, ceramic" is one cell in a TSV and two in a naive CSV. The export quotes it instead, and doubles any quote character already inside.
Excel and the byte order mark
Excel reads a UTF-8 CSV as Latin-1 unless the file starts with a byte order mark, which is how accented characters become mojibake. If Excel is the destination, leave the mark on.
The trailing newline
Some parsers treat a final empty line as an extra empty row. The export keeps whatever the original had, and lets you change it deliberately.
Semicolon-separated files — what Excel produces in locales that use a comma for decimals — are handled the same way. Pick the delimiter at export.