<!DOCTYPE html>
<html>
<head>
<title>Text to Hex Converter</title>
</head>
<body>
<h1>Text to Hex Converter</h1>
<textarea id="inputText" placeholder="Enter text here..."></textarea>
<button onclick="convertToHex()">Convert to Hex</button>
<p id="hexOutput"></p>
<script>
function convertToHex() {
let inputText = document.getElementById('inputText').value;
let hexOutput = '';
for (let i = 0; i < inputText.length; i++) {
hexOutput += inputText.charCodeAt(i).toString(16) + ' ';
}
document.getElementById('hexOutput').innerText = hexOutput;
}
</script>
</body>
</html>
No comments:
Post a Comment