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":"Указанный транспорт не найден"} 
  • If you use PHP, you can do json_encode(json_decode($jsonString), JSON_UNESCAPE_UNICODE) - ilyaplot
  • one
    I found this using MySQL tools gist.github.com/joni/2956080 - ilyaplot
  • 2
  • Thank you all very much. I read that there are no built-in methods in MySQL, but you can write your own function. That's enough for now. - TIT

0