View Single Post
  #3 (permalink)  
Old Apr 26th, 2007, 11:58
karinne's Avatar
karinne karinne is offline
SuperMember

SuperMember
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Help me

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">
......