CSV Viewer and Table Preview
Renders a delimited file as a readable table, including quoted fields and embedded line breaks.
Loading the tool…
How to use this tool
- Paste the delimited text, or choose a file from your machine.
- Leave the delimiter on automatic unless the first line is unusual.
- Select View as table to render the parsed rows.
- Turn off the header option if the first row is data rather than column names.
What csv viewer does
A CSV file is plain text, so any editor will open it, but very few of them make it readable. Columns drift out of alignment the moment one field is longer than the others, and a value that contains a comma inside quotes looks like two values. This viewer parses the file properly first and then draws it as a table, so what you see is the structure a database or spreadsheet would actually load.
The parser follows RFC 4180, which means quoted fields keep their delimiters, a doubled quote inside a quoted field is read as one literal quote, and a line break inside quotes does not start a new row. It also strips the byte order mark that Excel writes at the start of the file, which is the usual reason a first column arrives with a stray character in front of its name.