Эконом-супер
What encoding is this string? and how to translate it into readable text?
How can I detect the encoding of strings?
These are Cyrillic Unicode characters encoded as HTML entities. You can get the source text using decoding with the html_entity_decode()
function
<?php $str = 'Эконом-супер'; echo html_entity_decode($str);
Source: https://ru.stackoverflow.com/questions/554090/
All Articles
cp936
.... where you took it better tell ....... here it’s writtenЭконом-супер
, just a note) - Alexey Shimansky