diff --git a/index.html b/index.html index ca5faa7..da48ae9 100644 --- a/index.html +++ b/index.html @@ -116,7 +116,12 @@ 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; + }