fromCharCode() : Converts Unicode values to characters in JavaScript
JS Script:
<html> <body> <script type="text/javascript"> document.write(String.fromCharCode(65,66,67)); </script> </body> </html>
Output in Browser :
ABC
JS Script:
<html> <body> <script type="text/javascript"> document.write(String.fromCharCode(65,66,67)); </script> </body> </html>
Output in Browser :
ABC