A 10 KB CSV test file
File info
| File Format | CSV |
|---|---|
| File Size | 10 KB(10,240 bytes) |
| MIME Type | text/csv |
| MD5 | 4ab218bb7aff534e7b1e9cebff283cef |
| SHA-1 | 028a66cd9f41d6b4469475bd35d2e026a6952d76 |
| SHA-256 | 33832158a0bd611c952e39c5358cad5bbcc70fdf8144fce6a6ae710401e35002 |
Download via command line
curl -O https://devlab.itlibra.com/files/csv/csv-10kb.csv
wget https://devlab.itlibra.com/files/csv/csv-10kb.csv
Invoke-WebRequest -Uri "https://devlab.itlibra.com/files/csv/csv-10kb.csv" -OutFile "csv-10kb.csv"
About this file
A 10 KB test file in CSV format, sized to exactly 10,240 bytes. Free to download with no signup, for verifying upload limits and file-handling behaviour.
The MD5, SHA-1 and SHA-256 values listed above are the real digests of this file. Recomputing them after download confirms the transfer was not corrupted, and they double as known-good expected values when testing a hashing library.
What this size means in practice
10 KB sits below virtually every upload limit, which makes it the baseline "happy path" case. Confirm this file goes through first, then move up in size to probe where your limits actually bite.
It also fits inside the AWS Lambda asynchronous invocation payload cap (256 KB) and typical API JSON body limits. The size is convenient for CI fixtures and unit-test data you commit to a repository.
Getting a feel for this size
On a 10 Mbps link the transfer takes roughly 8 ms, and about 1 ms at 100 Mbps. Base64-encoded it grows to roughly 13 KB.
For a typical business CSV of about ten columns and roughly 100 bytes per row, this size corresponds to about 102 rows — a useful gauge for whether a spreadsheet can open it or a bulk database import finishes in time. It is a rough estimate; actual counts vary with content and column count.
What to check for this format
CSV is plain text and has no magic bytes of its own. You therefore cannot prove a file is CSV by inspecting a signature; validation has to focus instead on character encoding, delimiters, and quoting rules.
- Whether you process row by row instead of loading every line into memory — the classic cause of out-of-memory failures on large CSVs
- Whether quoted values containing embedded newlines or commas are parsed correctly
- Whether encoding detection is correct — CSVs containing Japanese are a frequent source of mojibake
FAQ
- Is this file free to use?
- Yes — fully free and no signup required. Use it for any commercial or non-commercial test/verification purpose.
- What is inside the file?
- Dummy data generated for testing — sized to match the listed size exactly.
- What are the hash values for?
- Verify integrity after download or use them as test data for hashing libraries.