Search notes:

Specifying a characterset within an HTML document

The encoding of HTML document can be specified with the <meta> tag.
The following example sets it to utf8:
<!DOCTYPE html>
<html><head>

  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">

</head></html>

See also

HTML element: meta
character set
character encoding

Index