One way to specify the encoding of an HTML document is by sending the appropriate headers. However, a fallback approach is to declare the encoding inline via a meta tag. For example:
<!DOCTYPE html>
<html>
<head>
<title>Foo bar</title>
<meta charset="utf-8" />
</head>
<body>
<p>Hello, world!</p>
</body>
</html>
But to read the document and determine the encoding, must one not already know the encoding?