I have a databse of a russsian website and it's encoded in windows-1251. Another words, the letters look like this from phpmyadmin: Âûõîäÿùàÿ â Ëîíäîíå ãàçåòà íà àðàáñêîì ÿçûêå «Àëü-Õàéÿò» ñîîáùèëà,
. Another words illegible charahcters. In order for the content to display properly this code must be added in php.
header("Content-Type: text/html; charset=windows-1251");
I would like to migrate this site an opensource software such as joomla or wordpress without hiccups.
So, in order to do that I need to convert these funny looking charachters to utf-8 which will look like this even in phpmyadmin:
Выходящая в Лондоне газета на арабском языке «Аль-Хайят» сообщила,
Any help would be much apprecciated.