Glossary

Exercise 16-3 (key points):

`utf-8-sig` writes a BOM (byte order mark, `\ufeff`) at the start of the file. Excel uses this to auto-detect UTF-8 encoding when opening CSV files directly. Without the BOM, Excel may interpret the file as the system default encoding, producing garbled characters. - When reading `utf-8-sig` files w

Learn More

Related Terms