Convert Decimal code to Octal by Using this Tool

<!DOCTYPE html>
<html>
<head>
  <title>Decimal to Text Converter</title>
  <style>
    body {
      font-family: Arial, sans-serif;
      background-color: #f2f2f2;
      padding: 20px;
    }
    
    .container {
      max-width: 800px;
      margin: 0 auto;
    }
    
    h1 {
      color: #333;
      margin-bottom: 20px;
    }
    
    .input-field {
      width: 100%;
      padding: 10px;
      border: 2px solid #ccc;
      border-radius: 4px;
      box-sizing: border-box;
    }
    
    .convert-button {
      margin-top: 10px;
      padding: 10px 20px;
      font-size: 16px;
      font-weight: bold;
      color: #fff;
      background-color: #4CAF50;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }
    
    .convert-button:hover {
      background-color: #45a049;
    }
    
    .result {
      margin-top: 20px;
      border: 2px solid #ccc;
      border-radius: 4px;
      padding: 10px;
      background-color: #fff;
    }
    
    .error {
      color: #ff0000;
    }
  </style>
</head>
<body>
  <div class="container">
    <h1>Decimal to Text Converter</h1>
    <input id="inputDecimal" class="input-field" type="text" placeholder="Enter decimal representation">
    <button onclick="convertToText()" class="convert-button">Convert</button>
    <div id="result" class="result"></div>
  </div>

  <script>
    function convertToText() {
      var inputDecimal = document.getElementById("inputDecimal").value;
      var decimalArray = inputDecimal.trim().split(" ");
      var text = "";

      for (var i = 0; i < decimalArray.length; i++) {
        var decimalCode = parseInt(decimalArray[i], 10);
        text += String.fromCharCode(decimalCode);
      }

      document.getElementById("result").textContent = "Text: " + text;
    }
  </script>
</body>
</html>

Comments

  1. https://amazingfreetoolspoint.blogspot.com/

    ReplyDelete
  2. Uratech USA Inc specializes in designing and manufacturing high-quality CNC tool storage solutions that cater to a wide range of CAPTO holders. Our innovative storage systems are built to meet the unique demands of modern machining environments, providing durability, versatility, and protection for your valuable CNC tools. If you're looking for top-tier tool storage for CAPTO holders, Uratech offers everything you need.

    Comprehensive Solutions to store CAPTO Holders

    Our CNC tool storage solutions are meticulously designed to support and store all types of CAPTO holders

    ReplyDelete

Post a Comment

Popular posts from this blog

Text to PDF Generator Tool

Free Compound Annual Growth Rate Calculator Tool: Easily Calculate Annual Growth Rate by Using this Tool