CSV to JSON
Detected: Comma (,)
| name | age | city | score |
|---|---|---|---|
| Alice | 28 | New York | 95.5 |
| Bob | 34 | London | 82 |
| Carol | 25 | Paris | 91 |
| Dave | 41 | Tokyo | 78.3 |
[
{
"name": "Alice",
"age": 28,
"city": "New York",
"score": 95.5
},
{
"name": "Bob",
"age": 34,
"city": "London",
"score": 82
},
{
"name": "Carol",
"age": 25,
"city": "Paris",
"score": 91
},
{
"name": "Dave",
"age": 41,
"city": "Tokyo",
"score": 78.3
}
]Pro Features
Custom column mappingNested object output
Related Tools
JSON to CSV
Convert JSON arrays to CSV format for spreadsheets and data analysis.
JSON Formatter
Format, prettify, and validate JSON data with syntax highlighting and error detection.
YAML to JSON
Convert YAML configuration files to JSON format with validation and pretty printing.
XML to JSON
Convert XML documents to JSON format with attribute handling and array detection.
JSON Validator
Validate JSON syntax and structure. Instantly identify and locate JSON errors.