The below script displays the Unicode of the given string using JavaScript. Here using charCodeAt() built in function to process each letter of text.
<!DOCTYPE html> <html> <head> <script> function myFun(){ var str = "abcd"; var len = str.length; for(i=0;i<len;i++) { var str2 = str.charCodeAt(i); alert(str2); } } </script> </head> <body> <button onclick="myFun()">Click Here</button> </body> </html>
Try Output Here :
No comments:
Write comments