Skip to content

CSV Viewer

Paste CSV text or open a .csv file and inspect it as a table, with row and column counts and the detected delimiter.

Processed locally in your browser

Options
0 chars · 0 lines
The result will appear here.

What is CSV Viewer?

CSV (comma-separated values) is the plain-text format used to exchange spreadsheet-like data. Files differ in delimiter (comma, semicolon, tab, pipe), quoting, line endings and encoding, which makes raw text hard to read.

This viewer parses the text with a real CSV parser, so quoted cells, escaped quotes and line breaks inside cells are handled correctly. It shows the first 500 rows in a table together with the number of rows and columns, the delimiter that was detected, the line-ending style and notes about a byte-order mark or suspicious characters.

How does it work?

  1. Paste your CSV into the input box, or use the open-file button to load a .csv file from your computer.
  2. Leave the delimiter on auto-detect, or force comma, semicolon, tab or pipe if the guess is wrong.
  3. Untick "First row is a header" when the file has no column names.
  4. Read the summary and browse the table preview; nothing leaves your browser.

Common use cases

  • Checking an export from a CRM, bank or analytics tool before importing it somewhere else.
  • Finding out why a file opens as a single column in a spreadsheet (wrong delimiter).
  • Spotting mojibake such as "é" that reveals an encoding mix-up.
  • Quickly counting rows and columns of a large dataset without opening a spreadsheet application.

Examples

Try this input in the tool above:

Input
id,name,email,city,age
1,Alice Martin,alice@example.com,Paris,34
2,Bob Durand,bob@example.com,"Lyon, France",28
3,Chloé Petit,chloe@example.com,Nice,41
4,David Roux,david@example.com,Paris,19
Output
Data rows: 4
Columns: 5
Delimiter: comma ( , ) (auto-detected)
Header row: yes
Line endings: LF
Encoding: UTF-8

Privacy

CSV Viewer runs entirely in your browser. The text or files you provide are processed on your device and are not uploaded, logged or stored on our servers.

Limitations

The table shows at most 500 rows for speed; the row count still covers the whole file. Very large files are better cleaned with the dedicated CSV tools.

Frequently asked questions

Why does my CSV appear as one column?

The delimiter was probably not the one the tool guessed, for example a semicolon in a European export. Choose the delimiter manually and the columns will split correctly.

Does the viewer change my data?

No. It only parses and displays the text. Use the formatter, sorter or filter tools if you want to transform the file.

What does the encoding note mean?

The text you provide is read as UTF-8. If the tool finds a BOM, replacement characters or typical mojibake sequences, it warns you so you can re-export the file as UTF-8.

More tools in JSON & Data →