JSFiddle - React, Tailwind, and code Playground

by William Green

HTML

<div style="font-size:30px;">The keycode is: <div id="keycode">(press any key on keyboard)</div></div>

JavaScript

window.onkeydown = function(e){
    e.preventDefault();
    document.getElementById('keycode').innerHTML = e.keyCode || e.which;
};