Run ❯
Get your
own
website
Result Size:
625 x 565
×
Change Orientation
Save Code
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <body> <h1>The Document Object</h1> <h2>The characterSet Property</h2> <p>The encoding of this document is:</p> <p id="demo"></p> <script> let encoding = document.characterSet; document.getElementById("demo").innerHTML = encoding; </script> </body> </html>