<span class="added_ans">დიდი მნიშვნელობა აქვს წიგნიერ ცოდნას, წიგნები სინანულის მხსნელ გზაზე გვაყენებენ, რადგანაც წიგნის სიტყვათაგან ვიძენთ ჩვე...</a>
Another example:<li class=""><a href="/?page=questions"><span>Questions</a></span></li>
<div class="action-button_toggle_menu nav-link dropdown-toggle btn btn-light username" href="#" id="…wnMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" aria-pressed="false">
$res = preg_replace('/\\\\u([a-f0-9]{4})/e', "iconv('UCS-4LE','UTF-8',pack('V', hexdec('U$1')))", json_encode($this->response));
Modern way of doing this is:$res = json_encode($this->response, JSON_UNESCAPED_UNICODE);
JSON_UNESCAPED_UNICODE
added in 5.4 PHP version