Convert CSV data into JSON format instantly.
CSV (Comma Separated Values) is a simple format used to store tabular data. Each line represents a row and values are separated by commas.
name,age alex,28
Example output:
[
{ "name": "alex", "age": "28" }
]