In this tutorial, we will learn to convert Unicode values to characters in JavaScript. The Unicode value is the standard value of a character and can be encoded by the user to convert it into a character.
For example, "A" is a Unicode character whose value is 65 according to the ASCII (American Standard Code for Information Interchange) table. Likewise, all letters, numbers, and other characters have specific Unicode values. We will learn to use JavaScript to identify Unicode characters from their values.
Use fromCharCode()method
In JavaScript, the string library contains the fromCharCode() method, which gets the decimal value of a Unicode character and returns the associated character. Additionally, it takes multiple values as arguments and returns a string after combining all characters.
grammar
We can use the fromCharCode() method to convert Unicode values to characters according to the following syntax.
String.fromCharCode( value ); String.fromCharCode( v1, v2, v3, v4, v5, … );
parameter
value - It is the decimal value of the Unicode character.
v1, v2, v3, ... - They are multiple values of different or the same Unicode value.
Example 1
In the example below, we use the fromCharCode() method on different Unicode values to convert them to characters. We convert two Unicode values - 69 and 97 into characters.
<html> <head> </head> <body> <h2 id="Convert-Unicode-values-to-characters-in-JavaScript">Convert Unicode values to characters in JavaScript.</h2> <h4 id="Converting-single-Decimal-Unicode-value-to-character-using-the-i-fromCharCode-i-method">Converting single Decimal Unicode value to character using the <i> fromCharCode() </i> method.</h4> <p id = "output"> </p> <script> let output = document.getElementById("output"); // converting different decimal values to characters let value = 69; let char = String.fromCharCode( value ); output.innerHTML += value + " to unicode character is : " + char + " <br/> "; char = String.fromCharCode( 97 ); output.innerHTML += 97 + " to unicode character is : " + char + " <br/> "; </script> </body> </html>
Example 2
In the following program, we use the fromCharCode() method to convert multiple Unicode values to characters. We convert two sets of Unicode values to char strings, the first to "TutorialsPoint" and the second to "Hello".
<html> <head> </head> <body> <h2 id="Convert-Unicode-values-to-characters-in-JavaScript">Convert Unicode values to characters in JavaScript. </h2> <h4 id="Converting-multiple-Decimal-Unicode-values-to-characters-using-the-i-fromCharCode-i-method">Converting multiple Decimal Unicode values to characters using the <i> fromCharCode() </i> method.</h4> <p id="output1"></p> <script> let output1 = document.getElementById("output1"); // converting multiple values to unicode characters in single pass. output1.innerHTML += " [84, 117, 116, 111, 114, 105, 97, 108, 115, 80, 111, 105, 110, 116] to Unicode character is : " + String.fromCharCode( 84, 117, 116, 111, 114, 105, 97, 108, 115, 80, 111, 105, 110, 116 ) + " <br/> "; output1.innerHTML += " [72, 69, 76, 76, 79] to Unicode character is : " + String.fromCharCode( 72, 69, 76, 76, 79 ) + " <br/> "; </script> </body> </html>
In the above output, users can see that when we pass multiple values of Unicode characters to the fromCharCode() method, it will output a string of related Unicode characters.
Users have learned and understood how the fromCharCode() method converts Unicode values to Unicode characters. Users can use the fromCharCode() method whether it is a single value or multiple values separated by commas.
The above is the detailed content of How to convert Unicode values to characters in JavaScript?. For more information, please follow other related articles on the PHP Chinese website!

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Dreamweaver CS6
Visual web development tools

WebStorm Mac version
Useful JavaScript development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software
