It's the same issue.
If you have little endian like I'm beginning to think you do, on your copy (not the one from my post), change:
Code:
<META http-equiv=Content-Type content="text/html; charset=windows-1255">
to:
Code:
<META http-equiv=Content-Type content="text/html; charset=utf-16l">
You used unicode 16 which has l and b (little endian and big endian). Using unicode 8 is probably what they meant (utf-8). But using windows-1255 should also work if the page is saved that way.
The thing is, whatever you use, the page must be saved in that encoding in the editor and its meta Content-Type tag must specify the same encoding that it was saved in.
But, due to the way different browsers react, the best idea would probably be to save in utf-8 (which is also unicode) and use this meta Content-Type tag:
Code:
<META http-equiv=Content-Type content="text/html; charset=utf-8">
Bookmarks