R. David Murray added the comment:
This is a duplicate of issue 27413.
--
nosy: +r.david.murray
resolution: -> duplicate
stage: -> resolved
status: open -> closed
superseder: -> Add an option to json.tool to bypass non-ASCII characters.
___
Python
New submission from TaoQingyun:
Sometimes I want this
```
$ echo -e '"\xe4\xbd\xa0\xe5\xa5\xbd"' | ./python -m json.tool --no-escape
"你好"
```
not just
```
$ echo -e '"\xe4\xbd\xa0\xe5\xa5\xbd"' | ./python -m json.tool
"\u4f60\u597d"
```
--
components: Library