Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

HTML | DOM characterSet Property

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The characterSet property is used to return the character encoding for the document at the time of parsing. It is the character set that has been used for the document rendering also the user can override the encoding. The characterSet property will return null if the document is created in memory.

Syntax: 
 

document.characterSet

Return Value: A String, representing the document’s character encoding

Example: 
 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>DOM characterSet Property</title>
    <style>
        h1 {
            color: green;
        }
         
        h2 {
            font-family: Impact;
        }
         
        body {
            text-align: center;
        }
    </style>
</head>
 
<body>
    <h1>GeeksforGeeks</h1>
    <h2>DOM characterSet Property</h2>
 
     
 
<p>For returning the characterSet of the current URL,
      click on the button: </p>
 
 
 
    <button onclick="myFunction()">Try it</button>
    <p id="demo"></p>
 
 
 
   <!-- Script to get the characterSet -->
    <script>
        function myFunction() {
            var x = document.characterSet;
            document.getElementById("demo").innerHTML = x;
        }
    </script>
</body>
 
</html>
                   


Output: 
 

After clicking on the button: 
 

Supported Browsers: 
 

  • Google Chrome 1.0
  • Edge 12.0
  • Internet Explorer 9.0
  • Firefox 1.0
  • Opera 12.1
  • Safari 3.0

 


My Personal Notes arrow_drop_up
Last Updated : 13 Jul, 2022
Like Article
Save Article
Similar Reads
Related Tutorials