“Ctrl+/”
“F11/ESC”
<!DOCTYPE html>
<html>
<head>
<title>String Type fromCharCode() Example</title>
<script type="text/javascript">
alert(String.fromCharCode(104, 101, 108, 108, 111)); //"hello"
</script>
</head>
<body>
</body>
</html>