Corrupt a CSV File Online
Corrupt a .csv file online for free. Breaks delimiters, quoting and encoding so spreadsheet apps and data pipelines reject the file.
- Nessun caricamento
- Nessun limite di dimensione
- Nessuna registrazione
Corrompi il tuo file CSV
Calibrato per .csv, .tsv, e funziona altrettanto bene con qualsiasi altro formato.
Perché i file CSV sono difficili da corrompere per bene
CSV has no schema, no header requirement and no terminator, so almost any byte sequence is arguably a valid CSV file. The formats that matter are the ones the consumer expects (consistent column counts, balanced quotes and decodable text) and those are what get destroyed here.
Cosa distrugge questo strumento
- Delimiter structure. Commas and line breaks are overwritten, so rows no longer split into a consistent number of columns.
- Quote balance. Double quotes are broken up, leaving quoted fields permanently unterminated and swallowing subsequent rows.
- Encoding validity. Invalid UTF-8 sequences are injected, so strict readers fail before parsing.
- The header row. The opening bytes are destroyed, so column names are lost and type inference fails.
Cosa vedrai dopo
| Applicazione | Comportamento |
|---|---|
| Microsoft Excel | Imports as a single garbled column, or warns that the file cannot be read. |
pandas read_csv | Raises ParserError: Error tokenizing data or a Unicode error. |
| Google Sheets | Import produces unreadable rows or fails outright. |
| Database bulk loaders | Abort the load and report a malformed record. |
Motivi comuni per farlo
- Testing that a bulk import rejects a bad file instead of loading partial rows.
- Verifying a data pipeline reports the failing file and row rather than dropping records.
- Checking that a CSV upload form validates before writing to a database.
- Producing malformed fixtures for a parser test suite.
Come corrompere un file CSV
- Trascina il tuo file .csv nel riquadro qui sopra, oppure fai clic per sfogliare.
- Lascia il livello su Standard, a meno che tu non voglia un danno parziale (Light) o debba sconfiggere un software di recupero (Heavy).
- Premi Corrompi file. L'elaborazione avviene sul tuo dispositivo, quindi termina quasi subito.
- Scarica il risultato. Per impostazione predefinita mantiene il nome file e la lunghezza in byte originali.
Domande frequenti su CSV
Will Excel still open it?
Excel will usually open something, because it treats any text file as importable. What it shows is a single column of mojibake rather than your data.
Is a partially corrupted CSV worse than a fully broken one?
For testing, often yes, a file that loads 400 of 500 rows before failing is the case that catches silent data loss. Use Light level for that.
Does it work on TSV and pipe-delimited files?
Yes. Any delimiter-separated text file uses the same profile.
Will the row count stay the same?
No. Line breaks are among the bytes overwritten, so the file no longer has a predictable row structure.