Type Here to Get Search Results !

Text to Octal converter Tool with colorful styling

Text to Octal Converter

Text to Octal Converter

TextToOctal() { const inputText = document.getElementById('textInput').value; let result = ''; for (let i = 0; i < inputText.length; i++) { const charCode = inputText.charCodeAt(i); const octalValue = charCode.toString(8); result += octalValue + ' '; } document.getElementById('result').innerText = `Octal representation: ${result.trim()}`; }

Post a Comment

0 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.