You need to have the proper character encoding in the hed of your document
From
Make your HTML efficient
Quote:
|
.... UTF-16 if you are writing in an Eastern Asian language like Chinese or Japanese.
|
- Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Some title</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-16">
......