Über CSV-Dateien
CSV (Comma-Separated Values)
Das CSV-Format ist eine Dateispezifikation, die in verschiedenen professionellen und privaten Kontexten verwendet wird. Wandle CSV-Dateien online und kostenlos zu anderen kompatiblen Formaten mit dem KaijuConverter um — keine Anmeldung, keine Software-Installation, sicher und privat. Die Verarbeitung erfolgt in der Cloud mit Verschlüsselung während der Übertragung und automatischer Löschung nach zwei Stunden.
Familie
Spreadsheets & Data
Erweiterung
.csv
MIME-Typ
text/csv
Kann verwendet werden als
WIE DAS
FORMAT CSV ENTSTAND.
CSV — Comma-Separated Values — is less a format and more a decades-old convention. The first CSV-like files appeared in IBM Fortran in 1972 as "list-directed input", and the format gradually settled into the familiar grid-as-text structure through the 1980s and 90s. It was finally formalized by RFC 4180 in 2005 — over three decades after first appearing in the wild.
That informal history is CSV's blessing and curse. Every spreadsheet, database, statistical package, and programming language on Earth reads and writes CSV. But they all do it slightly differently: quoting rules, line endings, escape characters, and Unicode handling vary wildly, and "it's just CSV" has ruined countless data-import days.
WISSENSWERTES UND
INTERESSANTE FAKTEN.
RFC 4180 is a suggestion, not a standard — most CSV files violate it somewhere.
Microsoft Excel saves CSV using the regional list separator (comma in EN, semicolon in DE/FR) — confusing international exchange.
The largest public CSV is probably the OpenStreetMap planet dump at over 100 GB.
A CSV file with commas inside quoted strings handled naively will break hundreds of parsers.
CSV has no native encoding declaration — whether it's UTF-8 or Latin-1 is guesswork.
VORTEILE UND
EINSCHRÄNKUNGEN.
Vorteile
- Universally readable — every spreadsheet, database, and programming language.
- Human-readable in any text editor.
- Stream-friendly — can process terabytes with constant memory.
- Git-friendly — clean diffs of row changes.
- Tiny overhead vs columnar data structures for simple data.
Einschränkungen
- No standard — quoting, escaping, encoding, and separators vary wildly.
- No type information: 0042 might be an integer, a string, or an error.
- Leading zeros and large numbers often get mangled by Excel auto-conversion.
- Not suitable for hierarchical or binary data.
- Breaks when content contains the delimiter and the parser is naive.
Typische Dateigrößen
Contact export (1000 rows)
100–300 KB
Analytics export (100k rows)
10–100 MB
Large dataset (1M rows)
100 MB – 1 GB
Full database dump
1 GB – 100 GB
Technische Spezifikationen
- MIME type
- text/csv
- Specification
- RFC 4180 (informational)
- Typical separator
- Comma (;), semicolon, tab, pipe
- Typical encoding
- UTF-8, Windows-1252, ISO-8859-1
- Line endings
- LF (Unix), CRLF (Windows)
UMWANDELN VON
CSV
Häufige Anwendungsfälle
Data import/export, database migration, analytics data, bulk uploads.
Verwandte Formate
Beliebte Vergleiche
CSV vs XLSX
Unterschiede, Dateigröße und wann jedes Format zu wählen ist.
CSV vs JPG
Unterschiede, Dateigröße und wann jedes Format zu wählen ist.
CSV vs HTML
Unterschiede, Dateigröße und wann jedes Format zu wählen ist.
CSV vs PDF
Unterschiede, Dateigröße und wann jedes Format zu wählen ist.
CSV vs TXT
Unterschiede, Dateigröße und wann jedes Format zu wählen ist.
CSV vs TSV
Unterschiede, Dateigröße und wann jedes Format zu wählen ist.
Beliebte CSV-Umwandlungen
Die meistgesuchten Ziele beim Umwandeln von CSV-Dateien.
Häufig gestellte Fragen zu CSV
Häufig gestellte Fragen
CSV (Comma-Separated Values) is a plain text Format für tabular data where each line represents a row und commas separate column values. It is the universell interchange Format für databases, spreadsheets, und data analysis Werkzeuge.
CSV Dateien öffnen in Microsoft Excel, Google Sheets, LibreOffice Calc, Apple Numbers, und any text editor like Notepad oder VS Code. Programming languages like Python und R have built-in CSV parsing libraries.
Use CSV für data interchange between systems, database imports/exports, und programmatic processing. verwenden XLSX when you need Formatting, formulas, charts, oder multiple sheets that CSV cannot represent.