Options

About CSV to JSON

This tool converts CSV (Comma-Separated Values) data to JSON format. Key features:

  • First row is used as object keys
  • Each subsequent row becomes an object in the array
  • Handles quoted values and commas within fields
  • Automatic data type detection (numbers, booleans)
  • Pretty print option for readable output

Example: "name,age" → [{"name": "John", "age": 30}]