You can customize parsing rules using different options in WITH clause:
BULK INSERT People
FROM 'f:\orders\people.csv'
WITH ( CODEPAGE = '65001',
FIELDTERMINATOR =',',
ROWTERMINATOR ='\n'
);
In this example, CODEPAGE specifies that a source file in UTF-8 file, and TERMINATORS are coma and new line.