CSV Converter
Convert CSV data to JSON, HTML tables, SQL statements, XML, Markdown, and more.
CSV Input
Preview
| name | age | city |
|---|---|---|
| John | 30 | New York |
| Jane | 25 | Los Angeles |
| Bob | 35 | Chicago |
Output Format
Output
[
{
"name": "John",
"age": "30",
"city": "New York"
},
{
"name": "Jane",
"age": "25",
"city": "Los Angeles"
},
{
"name": "Bob",
"age": "35",
"city": "Chicago"
}
]