Open In App

HTML DOM inputEncoding Property

The inputEncoding property returns the character encoding used for parsing the document. This property doesn’t have any default value. 

Syntax:



document.inputEncoding

Parameters:

Return Value:



Example: 




<!DOCTYPE html>
<html>
  
<head>
    <title>
        HTML | DOM inputEncoding Property
    </title>
  
</head>
  
<body>
    <p>
        Click the button to check the
        encoding of this document
    </p>
    <button onclick="geek()">
        Alert document's encoding
    </button>
  
    <script>
        function geek() {
            var docEncoding = document.inputEncoding;
            alert(docEncoding);
        }
    </script>
</body>
</html>

Output: Before clicking the button: 

 After clicking the button: 

Supported Browsers: The browser supported by DOM inputEncoding() Property are listed below:

Article Tags :