Currently, `fread` seems to include the utf-8 BOM inside the file. ``` library(data.table) # Create file f <- "test_utf-8.csv" cat(intToUtf8(c(239, 187, 191)), 'a,b,c\n1,2,3\n', file = f, sep = '') # Import file dt <- fread(f) names(dt) ## [1] "a" "b" "c" ```