Skip to content
Novus Examples
csv86 B

Latin-1 Encoded CSV

A CSV encoded in Latin-1 (ISO-8859-1) with accented names — for testing encoding detection and mis-decoding (it will look wrong if read as UTF-8).

Preview — first 5 linescsv
id,name,city,amount
1,Jos�,S�o Paulo,12.5
2,Zo�,Z�rich,34.0
3,Fran�ois,Montr�al,56.75

Specifications

Rows
3
Columns
4
Encoding
ISO-8859-1 (Latin-1)

What is a .csv file?

CSV (Comma-Separated Values) is a plain-text tabular format where rows are lines and fields are separated by commas, with quoting rules for values that contain delimiters, quotes, or newlines. It has no formal type system and depends on encoding and dialect conventions. It is the most portable format for tabular data exchange.

How to use this file

Use an example CSV to test parsers against quoting and embedded-delimiter edge cases, header handling, encoding detection, and import pipelines into databases or spreadsheets.

Generated by generation/data_tabular.py. Free for any use, no attribution required — license.