Comma-Separated Values (.csv)

RFC Standard

Comma-Separated Values (CSV) is a ubiquitous plain-text format for tabular data, where each line represents a data record and fields are separated by delimiter characters.

Convert XLSX to CSV

Free in-browser XLSX to CSV converter. Convert files instantly on your device.

Compress CSV Online

100% private in-browser compression - files never leave your device

Inspect & Metadata

Operating systems and file analyzers identify CSV files by inspecting the leading binary byte sequence:

Select or drag files

Select or drop files here

100% private in-browser conversion - files never leave your device

or paste Ctrl+V
Zero-Network-Transmission Privacy Guarantee: 0 bytes uploaded to external servers. All processing occurred locally in your browser sandbox.

Byte-Level Header Signature (Magic Bytes)

Operating systems and file analyzers identify CSV files by inspecting the leading binary byte sequence:

HEX SIGNATURE (OFFSET 0):

Plain Text

ASCII REPRESENTATION: ASCII / UTF-8

Standardization: RFC 4180 / IETF

Technical Specifications

Container ArchitectureDelimited flat text file representing tabular data rows and columns
CompressionGzip / Deflate achieves 85%-95% compression on repetitive tabular records
Byte EndiannessUTF-8 text stream (optional UTF-8 BOM EF BB BF used by Excel)
Color SpacesNot applicable
Channels & StructureRow records delimited by CRLF with columns delimited by commas
Max DimensionsUnbounded; streamable to gigabytes without loading entire file in memory
TransparencyNot applicable
Streaming & ProgressiveNative line-by-line stream processing supported by all data pipelines

Technical Comparison Matrix: CSV vs Competitors

Technical AttributeCSV (Current)Excel (XLSX)ParquetJSON
File TypePlain text flat tableZipped XML spreadsheetBinary columnar storageHierarchical text
Multiple SheetsNo (single flat table only)Yes (multiple workbooks and sheets)Partition-based storageNested arrays and objects
Data TypesUntyped raw textTyped cells, formulas, formattingStrict binary column typesPrimitive types (string, number, bool)
Big Data AnalyticsSlow (requires reading every row linearly)Not suitable for big dataUltra-fast (column pruning & predicate pushdown)Moderate

Common Corruption Modes & Hex Recovery Guide

⚠️ Columns shift to the right or row counts do not match.

Root Cause: A text field containing an unescaped comma without surrounding quotation marks.

Recovery: RFC 4180 requires fields containing commas to be wrapped in double quotes: "Smith, John".

⚠️ Accented characters render as strange symbols (mojibake like é instead of é) in Excel.

Root Cause: Excel opened a UTF-8 CSV assuming the legacy Windows ANSI/CP1252 character encoding.

Recovery: Prepend the 3-byte UTF-8 Byte Order Mark (0xEF 0xBB 0xBF) to the beginning of the file.

Security Analysis & Parser Attack Vectors

CSV files open directly in spreadsheet software like Excel and Google Sheets, exposing users to Formula Injection (CSV Injection) attacks.

Known Attack Vectors

  • Formula Injection: Cells starting with '=', '+', '-', or '@' executing spreadsheet macros or DDE commands (e.g. '=cmd|' /C calc'!A0').
  • Data exfiltration via HYPERLINK() formulas sending sensitive cell data to remote attacker servers upon click.

Defensive Best Practices: When exporting user data to CSV, prepend a single quote (') or tab to any cell starting with '=', '+', '-', or '@' to force plain text rendering in Excel.

Historical Origins & Milestones

2005IETF publishes RFC 4180, establishing the formal specification for CSV files.
1972IBM Fortran (H Extended) compiler implements comma-delimited input/output.

Key Advantages & Pros

  • Maximum simplicity: readable in any text editor and importable into every database and spreadsheet.
  • Extremely fast line-by-line streaming without building a full in-memory DOM.
  • Minimal overhead: no verbose tag syntax or schema definitions.

Technical Limitations & Cons

  • No standard data types: numbers, dates, booleans, and text are all stored as raw strings.
  • No support for multiple sheets, cell formatting, formulas, or metadata.
  • Delimiter conflicts (commas inside text, decimal commas in European locales) cause frequent parsing bugs.

Interesting Technical Trivia

  • In many European countries where commas are used as decimal points, semicolons (;) are used instead of commas as CSV separators.
  • Microsoft Excel historically required a UTF-8 BOM (0xEF 0xBB 0xBF) to correctly display non-ASCII accented characters.

Frequently Asked Technical Questions

What is RFC 4180?

RFC 4180 is the official IETF standard for CSV. It mandates that fields containing commas, line breaks, or double quotes must be enclosed in double quotes, and internal quotes must be escaped by doubling them ("").

Why do CSV files open with corrupted characters in Excel?

Older versions of Microsoft Excel default to the local Windows code page (like Windows-1252) rather than UTF-8 when opening CSV files directly. Adding a UTF-8 BOM (Byte Order Mark) at the start of the file forces Excel to decode UTF-8 correctly.