Text to Binary Converter Tool

 Text to Binary Converter Tool

<!DOCTYPE html>

<html>

<head>

  <title>Text to Binary Converter</title>

  <style>

    body {

      font-family: Arial, sans-serif;

      background-color: #f2f2f2;

    }

    

    .container {

      display: flex;

      flex-direction: column;

      align-items: center;

      margin-top: 100px;

    }

    

    h1 {

      color: #333;

      margin-bottom: 20px;

    }

    

    .text-area {

      width: 400px;

      height: 200px;

      padding: 10px;

      border: 2px solid #ccc;

      border-radius: 4px;

      resize: none;

    }

    

    .convert-button {

      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;

      font-size: 18px;

      font-weight: bold;

      color: #333;

    }

    

    @media screen and (max-width: 480px) {

      .text-area {

        width: 250px;

      }

    }

  </style>

</head>

<body>

  <div class="container">

    <h1>Text to Binary Converter</h1>

    <textarea id="inputText" class="text-area" placeholder="Enter your text"></textarea>

    <button onclick="convertToBinary()" class="convert-button">Convert</button>

    <div id="result" class="result"></div>

  </div>


  <script>

    function convertToBinary() {

      var inputText = document.getElementById("inputText").value;

      var binaryText = "";


      for (var i = 0; i < inputText.length; i++) {

        var binaryChar = inputText[i].charCodeAt(0).toString(2);

        binaryText += binaryChar.padStart(8, "0") + " ";

      }


      document.getElementById("result").textContent = "Binary representation: " + binaryText;

    }

  </script>

</body>

</html>

No comments:

Post a Comment

Sales Tax Calculator Tool

  Sales Tax Calculator Tool Sales Tax Calculator Sales Tax Calculator Subtotal: ...