viernes, 7 de junio de 2013

Convertir hexadecimal a ASCII Online



Introduce la cadena Hexadecimal que quieres convertir a formato ASCII ...




Código de la aplicación ...

<!-- By http://jquery-manual.blogspot.com -->
<!DOCTYPE HTML>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script>
    function hex2a(hex)
    { var str = ''; for (var i = 0; i < hex.length; i += 2) str += String.fromCharCode(parseInt(hex.substr(i, 2), 16)); return str;}
$(function()
{
$("#button_ascii").click(function()
{
cad_hex = document.getElementById("cad_hex").value;
cad_hex = $("#cad_ascii").text("Cadena Hexadecimal : "+hex2a(cad_hex));
});
});
</script>
</head>
<body>
<center>
Introduce la cadena Hexadecimal que quieres convertir a formato ASCII ...
</br></br>
<textarea cols="40" rows="8" id="cad_hex"></textarea>
</br></br>
<input type="button" id="button_ascii" value="Convertir a ASCII">
</br></br>
<div id="cad_ascii">
</div>
</center>
</body>
</html>




MetaTags: conversor, convertir,  hexadecimal, ASCII, online, javascript, jquery.



No hay comentarios: