Prev Demo
From Charcode Method For Converting Unicode Values To Characters
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> </head> <body> <p>Click on the "Button" to convert the Unicode values into characters.</p> <input type="button" value="Convert" onclick="Function()"/> <p id="myId"></p> <script> function Function() { var res = String.fromCharCode(84, 69, 67, 72, 70, 85, 78, 68, 65); document.getElementById("myId").innerHTML = res; } </script> </body> </html>
Note: We DO NOT save your trial code in our database.
Output