When I save an R script containing Turkish letters such as ş,İ,ı in RStudio with ISO-8859-1, and then open up the same R script again the Turkish letters turn into s,I,i. How can I avoid this situation?
> print("ş,İ,ı")
[1] "ş,İ,ı"
> print("s,I,i")
[1] "s,I,i"
> Sys.getlocale(category = "LC_ALL")
[1] "C"