← Back to Home

CSV to JSON Converter

Convert CSV data to JSON format instantly

How to use

  1. Paste your CSV (comma-separated) into the left box.
  2. Headers come from the first row; each subsequent row becomes an object.
  3. Review the JSON on the right; copy it when ready.
  4. If you edit the CSV, the JSON updates instantly.

Examples

Simple rows

Name,Age\nJane,30\nJohn,28 → [{"Name":"Jane","Age":"30"}, {"Name":"John","Age":"28"}]

Missing values

Empty cells become empty strings so your keys stay aligned.

Cities list

Name,City\nLee,Sydney\nMina,Oslo → JSON array of two objects with Name/City keys.

FAQs

Do you store my CSV?

No. Conversion runs entirely in your browser.

How are headers chosen?

The first row defines headers; extra columns become empty strings if missing.

Can I use semicolons or tabs?

Currently comma-only. Replace separators before pasting for best results.

Related tools