tsv
Tab-separated values (TSV) is a simple, plain-text data format that uses the tab character to separate fields within a record. Each line in a TSV file represents one record, with fields appearing left to right in a fixed order. A header line may be present to name the fields.
Files typically use the .tsv extension and are encoded as UTF-8 or other standard text encodings. The
Compared with CSV, TSV uses tabs rather than commas as separators, which can reduce conflicts with text
Limitations include lack of a universal standard for quoting or escaping, so fields containing tabs or newlines
TSV remains a common choice for quick data export/import when human readability and straightforward parsing are