CSV to JSON Converter
Convert CSV text data to JSON arrays with automatic header detection and support for quoted fields.
💡 Usage Tips
- Paste your CSV data or type it manually
- Enable "First row as headers" to use the first row as object keys
- The converter handles quoted fields and escaped quotes automatically
- Choose your delimiter or let the tool auto-detect it
- Download the JSON file or copy it to your clipboard
📝 Example
Input CSV:
name,age,city
John,30,"New York"
Jane,25,Boston
Output JSON:
[
{
"name": "John",
"age": "30",
"city": "New York"
},
{
"name": "Jane",
"age": "25",
"city": "Boston"
}
]