CSV to JSON and Back
Paste CSV or upload a file and get JSON keyed by the header row - or go the other way and flatten JSON into CSV for a spreadsheet. The parser handles quoted fields, embedded delimiters and the usual separator variants (comma, semicolon, tab, pipe), which covers most of the malformed exports you will actually meet.
The two formats make opposite trade-offs - CSV is compact and streams well, JSON carries structure and types. Which one to exchange data in, and when, is the subject of CSV vs JSON for data exchange. Once converted, the JSON formatter validates and pretty-prints the result.