Hi i had some issues with charset in search results. (See attach) Database and database connection use 'utf-8' charset.

I change line 414 in data.search.php:
$excerpt = utf8_encode($excerpt);
with:
$excerpt = iconv('UTF-8', 'UTF-8//IGNORE', $excerpt);
And now have right symbols in search results.