CSV ↔ JSON Converter
Convert between CSV and JSON
The converter turns CSV tables into JSON objects and back. The first CSV row is used as column headers. Fields with commas or quotes are handled correctly per RFC 4180.
- CSV → JSON: Each data row becomes an object with the columns as keys.
- JSON → CSV: An array of objects becomes a table; special characters are quoted automatically.
- Robust: Commas and quotes inside fields are not lost.
