CSV to JSON Converter
Convert CSV tables to JSON arrays and back, with quoted-field support.
Advertisement
AHow to use
- 01 Paste CSV (with a header row) or a JSON array of objects.
- 02 Pick the direction and click Convert.
- 03 Copy the converted output.
QFAQ
How are commas inside values handled? +
Standard CSV quoting is supported: wrap the value in double quotes ("hello, world") and escape inner quotes by doubling them.
Which JSON shape is expected for CSV output? +
An array of flat objects — [{"name":"Alice","age":30}, …]. Column order follows the first object, then any new keys found in later rows.