All conversions

CSV to JSON

Every CSV value is text. Numbers, booleans and dates are inferred on the way in, which is convenient until a leading-zero ID like 0042 becomes the number 42.

Runs in your browser // nothing is uploaded

Loading converter

What survives the conversion

Derived from what each format is able to store, not from what the conversion promises.

Kept

  • CSV carries nothing that JSON can also hold.
  • Nested structure, which CSV could not store
  • Data types, which CSV could not store

Lost

  • Row and column values
Settings used

Parsed per RFC 4180 with the first row as keys, emitted as an array of objects.

When not to convert

Check ID and postcode columns before trusting the output in a downstream system.

About these formats

Common questions

Does converting CSV to JSON lose anything?

Yes. Row and column values cannot be carried into JSON and is dropped. Every CSV value is text. Numbers, booleans and dates are inferred on the way in, which is convenient until a leading-zero ID like 0042 becomes the number 42.

Are my files uploaded when I convert CSV to JSON?

No. The conversion runs in your browser tab, so the file is never transmitted and the page works offline once loaded.

What settings does Filoven use for CSV to JSON?

Parsed per RFC 4180 with the first row as keys, emitted as an array of objects.

When should I not convert CSV to JSON?

Check ID and postcode columns before trusting the output in a downstream system.

Related conversions

This page uses the JSON ⇄ CSV, which handles other formats too.

Last updated 2026-08-03