Convert CSV data to JSON format instantly
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.
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.