Tutorial Gateway

  • C
  • C#
  • Java
  • Python
  • SQL
  • MySQL
  • Js
  • BI Tools
    • Informatica
    • Talend
    • Tableau
    • Power BI
    • SSIS
    • SSRS
    • SSAS
    • MDX
    • R Tutorial
    • Alteryx
    • QlikView
  • More
    • C Programs
    • C++ Programs
    • Python Programs
    • Java Programs

JavaScript FromCharCode

by suresh

The JavaScript FromCharCode function is one of the String Functions, which is used to convert the Unicode values to string values (based on ASCII Table). The syntax of the JavaScript FromCharCode function is:

String.fromCharCode(ASCII_Value)

NOTE: The FromCharCode() function is a static function of string objects. So, we have to use the String Object while calling this function. For example, String.fromCharCode(109)

JavaScript FromCharCode Example

The following set of examples will help you understand the FromCharCode function.

<!DOCTYPE html>
<html>
<head>
    <title> JavaScript FromCharCode() </title>
</head>
<body>
    <h1> JavaScript FromCharCode </h1>
    <p id= "Content1">Content 1</p>
    <p id= "Content2">Content 2</p>
    <p id= "Content3">Content 3</p>
    <p id= "Content4">Content 3</p>
<script>
  var Str1 = String.fromCharCode(84,117,116,111,114,105,97,108);
  var Str2 = String.fromCharCode(71,97,116,101,119,97,121);
  
  document.getElementById("Content1").innerHTML =  String.fromCharCode(65);
  document.getElementById("Content2").innerHTML =  String.fromCharCode(97);
  document.getElementById("Content3").innerHTML =  Str1;
  document.getElementById("Content4").innerHTML =  Str2; 

</script>
</body>
</html>

OUTPUT

JavaScript FromChatCode Function

ANALYSIS

Within the Script tag, the following statement will find the character at ASCII value 65.

document.getElementById("Content1").innerHTML =  String.fromCharCode(65);

The following JS FromCharCode String Function will find the character at ASCII value 97.

document.getElementById("Content2").innerHTML =  String.fromCharCode(97);

The following JavaScript statements will create a word by grouping multiple ASCII numbers in one function

 var Str1 = String.fromCharCode(84,117,116,111,114,105,97,108);
 var Str2 = String.fromCharCode(71,97,116,101,119,97,121);

Placed Under: JavaScript

  • SQL DML, DDL, DCL & TCL Cmds
  • SQL NOT EXISTS Operator
  • SQL UPDATE from SELECT
  • SQL AFTER UPDATE Triggers
  • SQL Get Column Names in Table
  • SQL IF ELSE
  • SQL ACID Properties
  • SQL FOR XML PATH
  • Java Two Dimensional Array
  • Java Perfect Number Program
  • Java Count Digits in a Number
  • C Compare Two Strings Program
  • C Print Prime Numbers 1 to 100
  • C program to Reverse a String
  • C Palindrome Number Program
  • C Program for Palindrome String
  • C Remove Duplicate String Chars
  • C Square of a Number Program
  • C Sum and Average of N Number
  • Python Fibonacci Series program
  • Python Area Of Circle Program
  • Python Prime Numbers 1 to 100
  • Python Program for Leap Year
  • Tableau Rank Calculation
  • Tableau Google Maps usage
  • Power BI Format Dates
  • Power BI Top 10 Filters
  • Power BI – Create Hierarchy
  • Power BI DAX Math Functions
  • Learn SSIS in 28 Days
  • SSIS Transformations
  • SSIS Incremental Load
  • SSRS Drill Through Reports
  • SSRS Drill Down Reports
  • R Programming Tutorial
  • C Tutorial
  • C# Tutorial
  • Java Tutorial
  • JavaScript Tutorial
  • Python Tutorial
  • MySQL Tutorial
  • SQL Server Tutorial
  • R Tutorial
  • Power BI Tutorial
  • Tableau Tutorial
  • SSIS Tutorial
  • SSRS Tutorial
  • Informatica Tutorial
  • Talend Tutorial
  • C Programs
  • C++ Programs
  • Java Programs
  • Python Programs
  • MDX Tutorial
  • SSAS Tutorial
  • QlikView Tutorial

Copyright © 2021 | Tutorial Gateway· All Rights Reserved by Suresh

Home | About Us | Contact Us | Privacy Policy