Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

HTML <meta> charset Attribute

❮ HTML <meta> tag

Example

Specify the character encoding for the HTML document:

<head>
  <meta charset="UTF-8">
</head>
Try it Yourself »

Definition and Usage

The charset attribute specifies the character encoding for the HTML document.


Browser Support

Attribute
charset Yes Yes Yes Yes Yes

Syntax

<meta charset="character_set">

Attribute Values

Value Description
character_set Specifies the character encoding for the HTML document.

Common values:

  • UTF-8 - Character encoding for Unicode
  • ISO-8859-1 - Character encoding for the Latin alphabet

In theory, any character encoding can be used, but no browser understands all of them. The more widely a character encoding is used, the better the chance that a browser will understand it.

To view all available character encodings, look at IANA character sets.

❮ HTML <meta> tag