I try to convert a json object to R dataframe, here is the json object:
json <-
    '[
{"Name" : "a", "Age" : 32, "Occupation" : "凡达"}, 
{"Name" : "b", "Age" : 21, "Occupation" : "打蜡设计费"},
{"Name" : "c", "Age" : 20, "Occupation" : "的拉斯克奖飞"}
]'
then I use fromJSON, mydf <- jsonlite::fromJSON(json), the result is 
  Name Age                                       Occupation
1    a  32                                 <U+51E1><U+8FBE>
2    b  21         <U+6253><U+8721><U+8BBE><U+8BA1><U+8D39>
3    c  20 <U+7684><U+62C9><U+65AF><U+514B><U+5956><U+98DE>
I was wondering how this happens, and is there any solution?
Using the package rjson can solve the problem, but the output is a list, but I want a dataframe output.
Thank you.
I've tried Sys.setlocale(locale = "Chinese"), well the characters are indeed Chinese,but the results are still weird like below:
  Name Age   Occupation
1    a  32         ·²´ï
2    b  21   ´òÀ¯Éè¼Æ·Ñ
3    c  20 µÄÀ˹¿Ë½±·É
