AZ Tools

CSV → HTML / Markdown / JSON Table

Convert

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.

Output
Paste CSV to convert.

How to use

  1. Paste your CSV data.
  2. Pick the output format (Markdown is shortest; HTML is what you'd drop into a CMS; JSON gives one object per row).
  3. 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