Ascii number to character or string or number converter in using javascript

technical talkiess
0

ascii value to  car convert.

ascii number se character aur string kaise pata kar sakte hai hai.

ascii code convert to the string and number.

String.fromCharCode(a); using this functio in javascript


 <!DOCTYPE html>

<html>

<body>


<h2>Ascii number to string / number creater</h2>


<script>

let a = prompt("Enter the number which you have to want ascii number");


alert(asciinumber(a));

function asciinumber(a){

return String.fromCharCode(a);

}

</script>


</body>

</html> 


Tags

Post a Comment

0Comments

Thanks you for commenting your questions. I will see question and respond you.

Post a Comment (0)