For future reference, I used readr::guess_encoding(), and the function guessed that my file encoding was windows-1252, and I'm pretty sure that's right
So the code would be,
readr::read_csv("filename.csv", locale = locale(encoding = "windows-1252"))