CSV / TSV to JSON Converter

Convert CSV or TSV to JSON and back without uploading files.

Conversion direction

Input

Output

About

Convert delimited tables and JSON arrays locally. CSV values stay as strings, so values such as 001 keep their leading zeros.

Key Features

  • CSV and TSV support
  • Correct quoted fields and embedded newlines
  • File input
  • Copy or download results

How to use

  1. 1Choose the conversion direction and delimiter.
  2. 2Paste data or open a CSV, TSV, or JSON file.
  3. 3Convert, then copy or download the result.

Example

Input

name,code
Ada,001

Output

[
  {
    "name": "Ada",
    "code": "001"
  }
]

Limitations

  • Input is limited to 2,000,000 characters.
  • CSV-to-JSON values are strings by design.
  • JSON-to-CSV input must be an array of objects or arrays.

Last reviewed:

Related Tools