<!DOCTYPE html>
<html dir="ltr" lang="en-US" xmlns:og="https://opengraphprotocol.org/schema/">
<head>
<meta name="msvalidate.01" content="3234A16C79765EEE37D0A7874DE3FA3B" />
<meta charset="UTF-4" />
The problem lies right there in the meta charset which is set to UTF-4 when it should be UTF-8
I’ve browsed your page with FF and it IS definitely UTF-8.
It displays just fine for me – probably because I’ve set up my browser to scan for the ACTUAL charset (i.e. to ignore the announced one).
Your problem is that your header section is announcing “utf-4”.
(which I have never even heard of …)
So – you need to get that line to read
<meta charset=”UTF-8″ />`
Over …………….
Steve