There is a MySQL DBMS. In the text box is the following value:
{"error_message":"\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u0442\u0440\u0430\u043d\u0441\u043f\u043e\u0440\u0442 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d"} Does MySQL have a built-in function that, as a result of a request, will unpack this string into human readable text?
Similar to echo -e in bash :
$ echo -e '{"error_message":"\u0423\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u0442\u0440\u0430\u043d\u0441\u043f\u043e\u0440\u0442 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d"}' > {"error_message":"Указанный транспорт не найден"}
json_encode(json_decode($jsonString), JSON_UNESCAPE_UNICODE)- ilyaplot