Convert CSV spreadsheet data to JSON format for APIs and applications
[
{
"name": "Alice",
"age": 28,
"city": "New York",
"email": "alice@example.com"
},
{
"name": "Bob",
"age": 34,
"city": "Los Angeles",
"email": "bob@example.com"
},
{
"name": "Charlie",
"age": 22,
"city": "Chicago",
"email": "charlie@example.com"
}
]Auto Type Detection: Numbers and booleans are automatically converted to their proper JSON types.
Quote Handling: Fields wrapped in quotes are properly parsed, including escaped quotes.
Multiple Delimiters: Support for comma, semicolon, tab, and pipe-separated values.