Loading...
Loading...
We use cookies to enhance your experience, analyze site usage, and serve personalized content. By clicking "Accept All," you consent to our use of cookies. See our Cookie Policy and Privacy Policy for details.
Convert JSON data to CSV format with advanced formatting options
Converts JSON data to CSV format with automatic nested object flattening using dot notation, supporting arrays of objects and nested structures. Offers three null handling modes (empty string, null literal, or skip row) and BOM insertion for Excel compatibility.
JSON is the standard data interchange format, but CSV remains essential for spreadsheets, legacy systems, and data analysis tools. Bridges the gap between structured JSON and tabular CSV without manual transformation.
Data analysts, backend developers, and anyone who needs to convert JSON API responses or datasets into spreadsheet-compatible CSV files.
Paste or upload your JSON data into the input editor (ensure it contains an array of objects for best results)
Select your preferred null handling mode from the dropdown: Empty String, Null Literal, or Skip Row
Toggle BOM (Byte Order Mark) ON if the CSV will be opened in Microsoft Excel to ensure correct encoding
Choose your delimiter (comma, semicolon, tab) and optionally enable "Quote All Fields" to wrap every value in quotes
Click "Convert" and inspect the preview table to verify nested keys were flattened correctly with dot notation
Download the result as a .csv file or copy to clipboard; adjust settings and reconvert if needed
Input: [{"user":{"name":"Alice","age":30},"tags":["admin","editor"]}] -> Output: user.name,user.age,tags.0,tags.1\nAlice,30,admin,editorInput: [{"id":1,"value":null},{"id":2,"value":"ok"}] with nullMode=skip -> Output: id,value\n2,okConvert CSV data to JSON format with advanced parsing options
Generate TypeScript interfaces and types from JSON data
Convert Unix timestamps to human-readable dates and back
Convert Markdown to HTML with live preview and GFM support
Dive deeper with our comprehensive guides and tutorials.