CSV ↔ JSON Converter

How CSV ↔ JSON Conversion Works

CSV rows are mapped to JSON objects using the header row as keys.

  1. 1

    Parse the header row

    The first row of CSV is parsed to extract column headers as object keys.

  2. 2

    Map data rows to objects

    Each subsequent row is mapped to a JSON object using the headers as property names.

FAQ

How do I convert CSV to JSON?
Paste your CSV data (with a header row) into the input area, select your delimiter, and the converter will transform it into a JSON array of objects.
What delimiters are supported?
The converter supports comma (,), tab, semicolon (;), and custom delimiters.

Related Tools