Skip to content
DEVELOPER UTILITY

CSV Editor, Viewer & Converter

Edit, view, sort, and convert CSV data — with table view and JSON conversion

Delimiter:
Valid CSV7 rows · 5 cols · 35 cells · 358 B

Related Tools

What is CSV?

CSV (Comma-Separated Values) is a plain-text file format for storing tabular data. Each line represents a row, and fields within a row are separated by a delimiter — most commonly a comma. CSV is one of the most universal data formats, supported by spreadsheet applications (Excel, Google Sheets), databases, programming languages, and data analysis tools.

Despite its simplicity, CSV has important nuances: fields containing the delimiter must be quoted, double quotes within quoted fields must be escaped by doubling them, and different systems use different line endings (CRLF vs LF). This tool handles all these edge cases using the industry-standard PapaParse library.

How to Use This CSV Editor

  1. Paste or type CSV data in code view, or Import a .csv file from your computer.
  2. The tool auto-detects your delimiter, or you can manually select comma, tab, semicolon, or pipe.
  3. Switch to Table View to see and edit data in a spreadsheet-like grid. Click column headers to sort.
  4. Click Normalize to clean up formatting, or Quote All to wrap every field in double quotes.
  5. Use To JSON to convert your CSV to a JSON array (copied to clipboard), or JSON → CSV to import a JSON array from your clipboard.
  6. Export the result as a .csv file, or Share a link so a colleague can view the same data.

Why Use an Online CSV Editor?

  • Quick inspection: View CSV files without opening Excel or Google Sheets. Ideal for checking API exports, database dumps, or log files.
  • Data cleaning: Normalize quoting, fix inconsistent column counts, and sort data before importing into another system.
  • Format conversion: Convert between CSV and JSON with one click — essential for API development and data pipelines.
  • Privacy: All processing happens in your browser. Your data never leaves your machine.
  • Collaboration: Share a link with compressed data in the URL — your colleague sees the exact same CSV without any file transfer.

CSV vs Other Data Formats

FeatureCSVJSONExcel
Human-readableYesYesNo
Nested dataNoYesLimited
Data typesText onlyString, number, bool, nullMany
FormulasNoNoYes
Multiple sheetsNoNoYes
File sizeSmallestSmallLargest

Frequently Asked Questions About CSV