CSV to JSON
Convert CSV to JSON in your browser
Turn CSV rows into a clean JSON array. Rename destination fields, build nested objects with dot notation (for example contact.email), convert types, and download the result. Everything runs locally in your browser.
Example output
[
{
"firstName": "Ada",
"lastName": "Lovelace",
"contact": {
"email": "ada@example.com"
}
}
]