﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
32080	Admin doesn't display properly unicode chars in JSONFields.	ZhaoQi99	ZhaoQi99	"
{{{#!python
>>> import json
>>> print json.dumps('中国')
""\u4e2d\u56fd""
}}}

`json.dumps` use ASCII encoding by default when serializing Chinese.
So when we edit a `JsonField` which contains Chinese character in Django admin,it will appear in ASCII characters.


[[Image(https://user-images.githubusercontent.com/25344334/95312376-6fa92b00-08c1-11eb-9b48-3c5e14683e9c.png)]]
[[Image(https://user-images.githubusercontent.com/25344334/95312742-e0504780-08c1-11eb-82af-116b8f2e158a.png)]]

I have try to fix this this problem in [https://github.com/adamchainz/django-mysql/pull/714].And it works prefectly.
"	Bug	closed	Forms	3.1	Release blocker	fixed			Ready for checkin	1	0	0	0	1	1
