Example input
[{"name":"Ada","note":"Line 1, \"quoted\"","formula":"=1+1"}]
DataHub
Tools
JSON to CSV
Local-first
Convert JSON arrays to CSV locally in your browser for spreadsheets, BI tools, imports, and data cleanup.
The converter parses strict JSON, flattens nested object fields, merges discovered columns, and quotes every CSV field while doubling embedded quotes. It is best suited to trusted object arrays with stable field names.
[{"name":"Ada","note":"Line 1, \"quoted\"","formula":"=1+1"}]"name","note","formula"
"Ada","Line 1, \"\"quoted\"\"","=1+1"Quoting is not spreadsheet formula neutralization. Untrusted cells beginning with formula characters can remain dangerous when the CSV is opened.
RFC 4180 documents a common CSV format, but spreadsheet applications add their own formula behavior. CWE-1236 describes the resulting injection risk.
Sources checked July 24, 2026. Specifications and platform behavior can change; verify the sources before formal use.
An array of objects with consistent, non-conflicting fields.
Yes. Every field is quoted and embedded double quotes are doubled.
Not automatically. Formula-like cells require a policy appropriate to the receiving spreadsheet.
They are flattened with dot-separated paths; arrays and empty structures need manual review.