How to useString fromCharCode() Method in Javascript

The JavaScript String.fromCharCode() method is used to create a string from the given sequence of UTF-16 code units. This method returns a string, not a string object.

Syntax:

String.fromCharCode( n1, n2, ..., nX )

Example: In this example we are using above-explained method to convert character into string.

Javascript
let charCode = 100;
console.log(typeof charCode)

//using form.CharCode
let result = String.fromCharCode(charCode);
console.log(typeof result);

Output
number
string

How to Convert Char to String in JavaScript ?

In the article, we are going to learn about conversion Char to a string by using JavaScript, Converting a character to a string in JavaScript involves treating the character as a string, a character is a single symbol or letter, while a string is a sequence of characters. Strings can contain multiple characters, forming words or sentences.

There are several methods that can be used to Convert Char to String in JavaScript, which are listed below:

Table of Content

  • Approach 1: Using Concatenation
  • Approach 2: Using String fromCharCode() Method
  • Approach 3: Using Join() Method
  • Approach 4: Using ES6 Spread Operator
  • Approach 4: Using Template Literals


We will explore all the above methods along with their basic implementation with the help of examples.

Similar Reads

Approach 1: Using Concatenation

In this approach, we are using concatenation, converting a character to a string by appending it to an empty string (‘ ‘)....

Approach 2: Using String fromCharCode() Method

The JavaScript String.fromCharCode() method is used to create a string from the given sequence of UTF-16 code units. This method returns a string, not a string object....

Approach 3: Using Join() Method

Using the join(”) method on an array of characters like [‘A’, ‘B’, ‘C’] creates a concatenated string result. The type changes from object to string....

Approach 4: Using ES6 Spread Operator

The ES6 spread operator spreads the character into an array, then joins it back into a string. By spreading the character, it creates an array with the character as its sole element, simplifying the conversion to a string....

Approach 4: Using Template Literals

Template literals, introduced in ES6, allow for easy string interpolation and manipulation. We can use template literals to convert a character to a string by enclosing the character within backticks (`)....