CSV to JSON Converter
Convert between CSV and JSON data formats. First row is used as headers for JSON keys.
0 chars0 bytes
Convert between CSV and JSON data formats. First row is used as headers for JSON keys.
CSV (Comma-Separated Values) uses the first row as headers. Each subsequent row becomes a JSON object.
Input CSV:
name,age John,30 Jane,25
Output JSON:
[{"name":"John","age":"30"},{"name":"Jane","age":"25"}]