Convert between CSV and JSON with type inference, custom delimiters, and flatten/unflatten support.
Output will appear here…Convert between CSV and JSON instantly. Supports type inference, custom delimiters, and flatten/unflatten for nested objects.
A nested JSON like {"address":{"city":"NYC"}} gets flattened to address.city in CSV. Unflatten reverses it — dotted column names become nested JSON objects.
Automatically converts CSV strings: "true"→true, "42"→42, "null"→null. Saves post-processing when working with APIs that expect proper types.