csvkit.org
CSV (Comma-Separated Values) utilities, in the browser
Say hi →

CSV Viewer

updated 12 March 2026

csv viewer
Drop a .csv file here, or
ready

CSV Viewer

Browse a CSV as a sortable, filterable table — directly in the browser, with no spreadsheet software required. Click any column header to sort. Type in the filter box to narrow rows across every column. Handles files well past Excel's 1,048,576-row cap, without uploading anything or requiring an account.

Before you start

All you need is a CSV (or TSV, or anything delimiter-separated that has a header row). No special preparation. The first row is treated as column names.

This tool is read-only — it won't modify your file. Filtering in the UI only affects what's displayed; the Download filtered button exports a fresh CSV containing exactly the rows currently visible.

How to use it

  1. Drop a .csv file on the pane, paste text, or pick a file.
  2. Click Render (it also renders automatically when you drop a file).
  3. Sort: click any column header. Click again to reverse; click a third time to go back to the original order.
  4. Filter: type in the filter box. It's a plain substring search across every cell of every row — no regex, no operators, no column-specific syntax, just text matching.
  5. Export the current view: Download filtered saves only the rows you see, preserving any sort order.

What you're looking at

Tips & common pitfalls

Troubleshooting

The whole file is in one column.

Delimiter misdetection. Paste the first 10 lines into a dedicated file and drop that — clearer delimiter patterns help the auto-detector.

My file is too large and the tab crashed.

Browser tabs have a memory ceiling (roughly 2–4 GB on desktop). Use the Split CSV tool to break the file into chunks first, then view the chunks.

I sorted and now the row numbers are shuffled — is my file corrupted?

No. Row numbers show the original position in the file. They shuffle when you sort. Click the sort arrow a third time to restore the original order.

Frequently asked questions

How big a file can I open?

Anything that fits in your browser's RAM. Typically 500 MB to 1 GB of CSV on a modern laptop; less on low-RAM devices and phones.

Does it handle quoted fields with commas and newlines?

Yes. The parser is PapaParse, which implements RFC 4180 correctly.

Can I use this offline?

Yes — save the page (⌘S / Ctrl+S) along with style.css and tool.js, then open it via file://. The only external dependency is the PapaParse library, which also gets saved.

Is anything uploaded?

No. See the privacy policy.