Paste CSV โ even messy, quoted, comma-inside-cell CSV โ and get clean, typed JSON out.
๐ Parsed in your browser โ your data never leaves this page
Naive converters split on every comma and choke the moment a cell contains "Chattogram, GEC". This one implements the actual CSV standard: quoted fields, doubled-quote escapes, line breaks inside cells and Windows line endings all parse correctly. The delimiter is auto-detected (comma, semicolon or tab โ semicolons are common in European Excel exports), the first row becomes your JSON keys, and with type detection on, "24" becomes the number 24 and "true" a real boolean โ the JSON your code actually wants.