CSV → HTML / Markdown / JSON Table
Paste CSV (or TSV, semicolon, pipe-separated) and convert it to three popular table formats. The parser handles quoted fields, commas inside quotes, and `""` escape sequences. Auto-detect picks the delimiter by looking at column-count consistency across the first 5 rows. Live preview shows the first 5 parsed rows so you can verify the parse looks right before copying the output.
Paste CSV to convert.
How to use
- Paste your CSV data.
- Pick the output format (Markdown is shortest; HTML is what you'd drop into a CMS; JSON gives one object per row).
- Verify the preview, then copy the output.
Frequently asked questions
- What if my CSV uses semicolons or tabs?
- Auto-detect handles `,` `;` `\t` `|`. If the score is ambiguous, set the delimiter manually from the dropdown.
- Does it handle commas inside quoted fields?
- Yes — `"Smith, John"` is one cell. `""` inside quotes becomes a literal `"`. Standard RFC 4180 behavior.
- Why JSON as objects vs nested arrays?
- Objects (with header keys) is what almost every API consumes. Without a header row, the JSON output falls back to a nested array.
- How do I import HTML output into Word or Google Docs?
- Paste the HTML directly — both treat pasted `<table>` markup as a real table.
Related tools
Excel (XLSX) to CSV, JSON & Markdown
Open an .xlsx workbook in the browser and export any sheet as CSV, JSON or a Markdown table — the file never leaves your device.
HTML Table to CSV Converter
Extract HTML <table> data into CSV, TSV or semicolon-separated rows, in your browser.
Markdown Table to CSV Converter
Convert a GitHub-flavored Markdown table into CSV, TSV or semicolon-separated rows, in your browser.
Markdown Table Generator
Paste CSV, TSV, or pipe-delimited data and get a properly aligned GitHub-flavored Markdown table.
CSV ↔ JSON Converter
Convert CSV to JSON and JSON back to CSV, with a delimiter option.
HTML → Markdown Converter
Convert HTML to clean Markdown — headings, lists, links, tables, code blocks all preserved. Useful for migrating CMS content or scraping articles.