Transform CSV data into JSON format instantly. Perfect for API development, data migration, and working with modern web applications.
Features
**Header Detection**: First row automatically becomes JSON keys.
**Custom Delimiters**: Support for comma, semicolon, tab, and pipe separators.
**Type Detection**: Numbers and booleans are converted to proper JSON types.
**Nested Output**: Option to create nested JSON structures.
Example
**CSV:** ``` name,age,city John,30,NYC Jane,25,LA ```
**JSON:** ```json [ {"name":"John","age":30,"city":"NYC"}, {"name":"Jane","age":25,"city":"LA"} ] ```