This commit is contained in:
Omar Najjar 2024-03-20 23:38:16 +11:00
parent 1d9b00705d
commit 3b6cebc580

View file

@ -116,7 +116,12 @@
document.getElementById('outputTextHomoglyph').value = outputText; document.getElementById('outputTextHomoglyph').value = outputText;
} }
function insertRLOCharacter() {
let inputText = document.getElementById('inputTextRLO').value;
// Insert the RLO character at the beginning of the text
let outputText = '\u202E' + inputText;
document.getElementById('outputTextRLO').value = outputText;
}
</script> </script>
</body> </body>
</html> </html>