Specify the Shift JIS character code

Explanation

The character code used in a page specifies content-type for http-equiv. Specify charset=text/html;shift_jis for content. Some HTML documents crested in old days may be described Shift JIS code as x-sjis.

Sample Code [Output]

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=shift_jis">
<title>Sample</title>
</head>
<body>
<h1>Sample</h1>
<p>
Specify a character code
</p>
</body>
</html>