Html – response header VS meta tag

htmlhttp-headersseo

I can declare some info, like encoding and language, in meta-tag or in response-header.
My question: what the best way (maybe them both), for SEO and old-browsers?

meta-tag example:

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

(PHP) header example:

header('Content-Type: text/html; charset=utf-8');

What's better ?

Best Answer

Do both. The header takes precedence, but if the HTML page is accessed locally, there are no HTTP-headers, so you want to have <meta charset="..."> as a safety mechanism.