comma-separated values
Sign in to saveAlso known as CSV, .csv, CSV file
file format used to store data
Key facts
- Filename extension
- .csv
- Internet media type
- text/csv
- Uniform type identifier uti
- public.comma-separated-values-text
- Uti conformation
- public.delimited-values-text
- Type of format
- multi-platform, serial data streams
- Container for
- database information organized as field separated lists
- Standard
- RFC 4180
via Wikipedia infobox
Wikidata facts
- Image
- LibreOffice 7.2.4.1 Calc with csv screenshot.png
Show 5 more facts
- short name
- CSV
- media type
- text/csv
- file extension
- csv
- Stack Exchange tag
- tex.stackexchange.com/tags/csv
- Commons category
- Comma-separated values (CSV)
via Wikidata · CC0
~9 min read
Article
Comma-separated values (CSV) is a plain text data format for storing tabular data where the fields (values) of a record are separated by a comma and each record is a line (i.e. newline separated). CSV is commonly-used in software that generally deals with tabular data such as a database or a spreadsheet. Benefits cited for using CSV include simplicity of use and human readability. CSV is a form of delimiter-separated values. A CSV file is a file that contains CSV-formatted data.
CSV is not limited to a particular character encoding but should be and is commonly used with UTF-8, particularly because it does not provide a way to indicate the character encoding.