CSV to JSON converter
Convert CSV data to JSON format with custom delimiters
- Paste your CSV data into the input field
- Select the delimiter used in your CSV (comma, semicolon, tab, or pipe)
- Check "First row is header" if your CSV has column names in the first row
- Enable "Pretty print JSON" for readable output, or disable for compact JSON
- Click "Convert to JSON" to perform the conversion
- Copy the output or download it as a .json file
CSV input:
name,age,city Alice,28,Portland Bob,35,Seattle
JSON output:
[
{
"name": "Alice",
"age": "28",
"city": "Portland"
},
{
"name": "Bob",
"age": "35",
"city": "Seattle"
}
]