TSV to JSON Converter
Convert TSV (tab-separated values) to JSON instantly in your browser. First row used as column headers. No data leaves your device.
Related Tools
JSON → YAML
Convert JSON to YAML format instantly. Supports nested objects, arrays, and complex structures.
YAML → JSON
Convert YAML to JSON format instantly. Supports multi-document YAML and complex configurations.
CSV → JSON
Convert CSV to JSON array instantly. Automatic header detection and type inference.
Advertisement
How to Use
- Paste or type TSV data into the input panel (first row is treated as column headers).
- Each subsequent row becomes a JSON object with keys from the header row.
- The JSON array output appears instantly on the right.
- Click Copy Output to copy to clipboard, or Download to save as a
.jsonfile. - Use the Example button to load sample TSV data.
TSV Format
Tab-Separated Values (TSV) is a plain-text table format exported by spreadsheet apps like Excel and Google Sheets:
Name Age City Alice 30 London Bob 25 Berlin
TSV vs CSV
- TSV uses tab characters as delimiters; CSV uses commas
- TSV avoids quoting issues when data contains commas (e.g., addresses)
- Both formats are natively exported by Excel and Google Sheets