CSV to TOON converter

CSV is already compact, but it gives a language model no guarantees: no types, no explicit row count, no field validation. TOON keeps CSV's tabular efficiency and adds a declared header with a row count, which measurably improves how reliably models read your data.

The first CSV line is treated as the header; numbers and booleans are typed automatically. Delimiters are auto-detected, and the result usually tokenizes within a few percent of the raw CSV — with structure JSON would have tripled in tokens.

CSV TOON

TOON out
Convert something to print your token receipt.

Questions

Why convert CSV to TOON instead of pasting raw CSV into a prompt?
TOON keeps CSV's compactness but adds a declared field header and an explicit row count, which measurably improves how reliably a model reads and validates the data.
How are CSV data types handled?
The first line is treated as the header. Numbers and booleans are inferred automatically, and the delimiter (comma, tab or semicolon) is auto-detected.
Does my spreadsheet data leave my browser?
No. The CSV is parsed and converted entirely client-side, so it is safe to paste production exports.