2024-04-12 10:53:26 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<p>Click the button to check the encoding of this document.</p>
|
|
|
|
|
|
|
|
<button onclick="myFunction()">Try it</button>
|
|
|
|
|
|
|
|
<p><strong>Note:</strong> Internet Explorer 8 and earlier does not support the characterSet property.</p>
|
|
|
|
|
|
|
|
<p id="demo"></p>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
function myFunction() {
|
|
|
|
var x = document.characterSet;
|
|
|
|
console.assert(x === 'utf-8', 'Usually utf-8');
|
|
|
|
}
|
|
|
|
|
|
|
|
console.error('document.characterSet');
|
|
|
|
myFunction();
|
2024-06-01 07:30:03 -04:00
|
|
|
console.exit();
|
2024-04-12 10:53:26 -04:00
|
|
|
</script>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|