From 3b6cebc580a09fe874a6d3929dd2ba9ce5c32767 Mon Sep 17 00:00:00 2001 From: Omar Najjar Date: Wed, 20 Mar 2024 23:38:16 +1100 Subject: [PATCH] z --- index.html | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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; + }