Free Online tool for converting CSVJSON (a CSV format variant where every value is valid JSON) to JSON.
Output array Try Now!
Note : CSVJSON To JSON Converter online working proper in Chrome, Firefox, Safari, Edge, Windows, Mac and Linux and it's Free.
Below is an example of the original CSVJSON To JSON and the result.
Original CSVJSON To JSON Example"index","value1","value2" "number",1,2 "boolean",false,true "null",null,"non null" "array of numbers",[1],[1,2] "simple object",{"a": 1},{"a":1, "b":2} "array with mixed objects",[1,null,"ball"],[2,{"a": 10, "b": 20},"cube"] "string with quotes","a\"b","alert(\"Hi!\")" "string with bell&newlines","bell is \u0007","multi\nline\ntext"
And an example of how the online CSVJSON To JSON works.
CSVJSON To JSON Result[ { "index": "number", "value1": 1, "value2": 2 }, { "index": "boolean", "value1": false, "value2": true }, { "index": "null", "value1": null, "value2": "non null" }, { "index": "array of numbers", "value1": [ 1 ], "value2": [ 1, 2 ] }, { "index": "simple object", "value1": { "a": 1 }, "value2": { "a": 1, "b": 2 } }, { "index": "array with mixed objects", "value1": [ 1, null, "ball" ], "value2": [ 2, { "a": 10, "b": 20 }, "cube" ] }, { "index": "string with quotes", "value1": "a\"b", "value2": "alert(\"Hi!\")" }, { "index": "string with bell&newlines", "value1": "bell is \u0007", "value2": "multi\nline\ntext" } ]