Configuration that starts life in a spreadsheet rarely stays a spreadsheet for long. Vault exports, data-team handoffs and legacy config sheets all come out as CSV — and end up as a KEY=value file. Converting by hand or with a naive split is where data dies: a value containing a comma vanishes into an extra column, an exported quote survives intact, or a semicolon-delimited file produced by a European Excel export greets you with one giant row.
The CSV to .env Converter parses CSV properly. It understands quoted fields, escaped quotes, embedded delimiters and multi-line quoted values, and handles comma, semicolon or tab delimiters. Choose which column is the key and which carries the value — or flip on header-row mode and use the column names directly. Output highlights the first two columns by prefixing the value column with value= for clarity.
Everything runs in the browser: no uploads, no account, deterministic output you can review line by line before saving.