I have a data set containing Chinese characters that I worked on using UTF-8 is processed. Part of the data looks like this:
encod cKeyword
UTF-8 <U+5169><U+7528> <U+5305> 27 bloide herme
UTF-8 <U+593E> <U+62C9><U+934A> <U+9577> loewe
UTF-8 <U+5169><U+7528> <U+5305> <U+8FF7><U+4F60> 31 lim pashli phillip
UTF-8 <U+5305> <U+624B><U+62FF> givenchy pandora
When I use write.csv(data, "file.csv", fileEncoding = "UTF-8")
, I get a .csv file that when opened displays the exact same thing in Excel. But I need the Unicode to be displayed as its Chinese character.
How can I get it to write Chinese characters instead?