How it works
- Input. Paste your content or drop a supported file.
- Options. Adjust the options for the result you need.
- Process. Run the tool, then copy or download the result.
Convert CSV tables into ready-to-use JSON.
Convert a simple CSV table into a JSON array directly in the browser. Column headers become object keys and each data row becomes one object.
id,code 1,BR 2,PT
[
{ "id": "1", "code": "BR" },
{ "id": "2", "code": "PT" }
]