<html>
<head>
<title>il metodo fromCharCode() in JavaScript</title>
<script type="text/javascript">
document.write("<p>Le lettere corrispondenti ai caratteri Unicode 73, 44, 122, 91 sono " + String.fromCharCode(73, 44, 122, 91) + "</p>");
</script>
</head>
<body>
</body>
</html>