Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<html>
<head>
</head>
<script type="text/javascript">
var theStr = 'ığüşöçİĞÜŞÖÇ';
function convertHtmlEntitiesToCharacters() {
var newDiv = document.createElement(newDiv);
newDiv.innerHTML = theStr;
alert('Entities:\n' + theStr + '\n\nCharacters:\n' + newDiv.innerHTML);
}
</script>
<body onload="convertHtmlEntitiesToCharacters();">
</body>
</html>