JSON Test File (test.json):
[
{
"id": 123,
"text": "FR Théâtre"
},
{
"id": 223,
"text": [
"FR Théâtre"
]
}
]
Command to import:
sqlite-utils insert test.db text test.json --pk=id
Resulting table view from datasette:

Original, db.py line 2225:
return json.dumps(value, default=repr)
Fix, db.py line 2225:
return json.dumps(value, default=repr, ensure_ascii=False)
JSON Test File (test.json):
[ { "id": 123, "text": "FR Théâtre" }, { "id": 223, "text": [ "FR Théâtre" ] } ]Command to import:
Resulting table view from datasette:
Original, db.py line 2225:
Fix, db.py line 2225: