1👍
The translation will only work for the browsable API and might for error response messages.
You probably need to double check your client side encoding. conversion error between JSON for Chinese characters has a good explanation about this.
0👍
jsonEntity.toString()),"UTF-8")
Many are using asynchttpclient for android to make network requests. So anytime you’re posting something to the server, you’ll use a StringEntity. So just make sure to specify the encoding as above. Then things work fine. Don’t need to do anything to Django settings or Djangorestframework.
Source:stackexchange.com