Thursday, March 21, 2024

Free extraordinary web tools

<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <title>Text to ASCII Art Converter</title>
    <style>
        body {
  background-color: #f2f2f2;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

h1 {
  text-align: center;
}

textarea {
  display: block;
  margin: 0 auto;
  width: 80%;
  min-height: 200px;
  resize: none;
}

button {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #007bff;
  color: #fff;
  font-size: 1.2em;
  cursor: pointer;
}

#output {
  display: block;
  margin: 20px auto;
  white-space: pre;
  font-size: 1.2em;
}

    </style>
  </head>
  <body>
    <h1>Text to ASCII Art Converter</h1>
    <textarea id="input" placeholder="Enter your text here..."></textarea>
    <button id="convert-btn" onclick="convert()">Convert</button>
    <div id="output"></div>
    <script>
        function convert() {
  const input = document.getElementById("input").value;
  const output = document.getElementById("output");
  let result = "";
  
  for (let i = 0; i < input.length; i++) {
    const charCode = input.charCodeAt(i);
    
    if (charCode === 10) { // new line
      result += "<br>";
    } else if (charCode >= 32 && charCode <= 126) { // printable ASCII
      result += String.fromCharCode(9216 + charCode); // convert to block element
    } else { // non-printable ASCII
      result += input[i];
    }
  }
  
  output.innerHTML = result;
}

    </script>
  </body> 

</html> 

Monday, March 18, 2024

Compound Annual Growth Rate Calculator

Compound Annual Growth Rate Calculator

Color Scheme Generator

Color Scheme Generator

AND Calculator

AND Calculator

Output:

Random Word Generator

Random Word Generator

Enter the number of words you want to generate:

Countdown Timer

Countdown Timer

Days
Hours
Minutes
Seconds
Password Generator

Password Generator

Sales Tax Calculator

Sales Tax Calculator

ASCII to Binary Converter

ASCII to Binary Converter

Binary to ASCII Converter

Binary to ASCII Converter

Decimal to Binary Converter

Decimal to Binary Converter

Decimal to Text Converter

Decimal to Text Converter

Octal to Hexadecimal Converter

Octal to Hexadecimal Converter

Octal to Text Converter

Octal to Text Converter

Text to ASCII Converter

Text to ASCII Converter

Text to Octal Converter

Text to Octal Converter

Text to Hexadecimal Converter

Text to Hexadecimal Converter

AdSense Revenue Calculator

AdSense Revenue Calculator

Fake Address Generator

Fake Address Generator

Text Generator

Text Generator

Coin Toss Game

Coin Toss Game

Coin Toss Game

Coin Toss Game

Responsive YouTube Thumbnail Downloader

YouTube Thumbnail Downloader

Simple WordPad
Start typing here...
Fast.com Web View
Video to Audio Converter

Video to Audio Converter

Click or drop a video file here
Article Writing Tool
Article Writing Tool
Thinking...
Thinking...
Website Disclaimer Generator
Website Disclaimer Generator
Thinking...
Thinking...
HTML Tool Maker
HTML Tool Maker
Thinking...
Thinking...
Privacy Policy Generator
Privacy Policy Generator
Thinking...
Thinking...
AI Story Writing Tool
AI Story Writing Tool
Thinking...
Thinking...

Sciences calcular

Scientific Calculator C ⌫ ^ ÷ 7 8 9 × 4 5 6 ...