HTML | <script> charset Attribute Last Updated : 31 May, 2022 Comments Improve Suggest changes Like Article Like Report The HTML <script>charset Attribute is used to specifies the character encoding used in an external script. Syntax: <script charset="charset"> Note: HTML <script>charset Attribute is not supported by HTML5. Attribute Values: It contains the value charset which specifies the character encoding for the external scripts. "ISO-8859-1": It is used to specify the Standard encoding for the Latin alphabet."UTF-8": It is used to specify the Character encoding for Unicode. Compatible with ASCII. Example: This Example illustrates the use of charset Attribute in script Element. html <!DOCTYPE html> <html> <head> <title> script tag </title> <style> body { text-align: center; } h1 { color: green; } </style> </head> <body> <h1> GeeksforGeeks </h1> <h2> HTML charset Attribute in <script> Element </h2> <p id="Geeks"></p> <script charset="UTF-8"> document.getElementById("Geeks").innerHTML = "Hello GeeksforGeeks!"; </script> </body> </html> Output : Supported Browsers: The browser supported by HTML <script>Charset Attribute are listed below: Google ChromeInternet ExplorerFirefoxOperaSafari Comment More infoAdvertise with us Next Article HTML | <script> charset Attribute M manaschhabra2 Follow Improve Article Tags : Web Technologies HTML HTML-Attributes Similar Reads HTML <meta> charset Attribute The HTML <meta> charset attribute specifies the character encoding for the HTML document. It ensures that the browser correctly interprets the characters and symbols on the webpage, commonly set as UTF-8 for universal character support across languages and symbols. Syntax<meta charset="char 2 min read HTML <a> charset Attribute HTML <a> charset attribute specifies the character encoding for an external resource linked with the HTML anchor element. It ensures proper interpretation of text by defining the character set used in the linked resource.Note: It is not supported by HTML5.Syntax:<a charset="value">Attrib 1 min read HTML | <td> char Attribute The HTML <td> char Attribute is used to specify the alignment to the character of content in a table cell. This attribute only contains char align attribute. Its default value is a decimal point for page language. It is not supported by HTML 5. Syntax: <td char="character"> Attribute Val 1 min read HTML <th> char Attribute The HTML <th> char attribute is used to specify the alignment to the character of content in a table header cell. It only contains the char align attribute. Its default value is a decimal point for page language. Note: It is not supported by HTML5. Syntax: <th char="character"> Attribute 1 min read HTML <link> charset Attribute The HTML <link> element's charset attribute specifies the character encoding for the linked resource, typically for external stylesheets or scripts. It was primarily used with links to external files, but it's now obsolete and rarely needed as encoding is usually specified directly in the file 2 min read Like