CSV Converter

Convert CSV data to JSON, HTML tables, SQL statements, XML, Markdown, and more.

CSV Input

Preview

nameagecity
John30New York
Jane25Los Angeles
Bob35Chicago

Output Format

Output

[
  {
    "name": "John",
    "age": "30",
    "city": "New York"
  },
  {
    "name": "Jane",
    "age": "25",
    "city": "Los Angeles"
  },
  {
    "name": "Bob",
    "age": "35",
    "city": "Chicago"
  }
]