JSFiddle - React, Tailwind, and code Playground

by JakobJingleheimer

HTML

<input id="pw" type="password" value="Ă©" />

JavaScript

const pw = document.getElementById('pw');

document.documentElement.append(pw.value);

pw.addEventListener('input', ({ target: { value } }) => {
	document.documentElement.append(value);
});