The new iPhones look so cool for something I’m probably never gonna get (I can’t afford it im still on a 13)
<html>
<body>
<p id="demo"></p>
<script>
document.addEventListener("keypress", function(event){
var x = event.which || event.keyCode;
document.getElementById("demo").innerHTML = "The Unicode value is: " + x;
});
</script>
</body>
</html>