All Rounder Tools Blogger-Best blog for blogger: Octal converter Tool with colorful styling and all its features use any free library

Thursday, October 3, 2024

Octal converter Tool with colorful styling and all its features use any free library

 

Text to Octal Converter

Text to Octal Converter

Octal Output

body { font-family: Arial, sans-serif; background-color: #f4f4f9; color: #333; margin: 0; padding: 20px; } .container { max-width: 600px; margin: auto; background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); } h1 { text-align: center; color: #4a4e69; } textarea { width: 100%; height: 100px; margin: 10px 0; padding: 10px; border: 2px solid #4a4e69; border-radius: 5px; resize: none; font-size: 16px; } button { background-color: #9a8c98; color: white; border: none; padding: 10px 15px; border-radius: 5px; cursor: pointer; font-size: 16px; width: 100%; } button:hover { background-color: #c9ada7; } h2 { color: #4a4e69; } document.getElementById('convertButton').addEventListener('click', function() { const inputText = document.getElementById('inputText').value; const octalOutput = textToOctal(inputText); document.getElementById('outputText').value = octalOutput; }); function textToOctal(text) { return text.split('').map(char => char.charCodeAt(0).toString(8)).join(' '); }

No comments:

Post a Comment