How can I export a data frame that has both English and Chinese words to a csv file? When I normally export it or even when I use a UTF-8 encoding to export the Chinese words are displayed as the following example:
(<U+6709>)<U+307F><U+3064><U+3044><U+5712>
This is my R script to export:
library(xlsx)
write.csv(df_final,file = "./df_final.csv",
row.names=FALSE,
fileEncoding = "UTF-8")