JSFiddle - React, Tailwind, and code Playground

HTML

Both have maxlength=5
<form>
    Input type "number"<input type="number" maxlength="5"><br>
    Input type "text"<input type="text" maxlength="5">
</form>

CSS

input{
    border: 1px solid black;
    height: 20px;
    width: 200px;
}