

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to convert Unicode values to characters in JavaScript?
To convert Unicode values to characters in JavaScript, use the fromCharCode() string method.
Example
You can try to run the following code to convert Unicode to character −
<!DOCTYPE html> <html> <body> <script> var a = String.fromCharCode(72); document.write("Character: "+a); </script> </body> </html>
- Related Questions & Answers
- Convert number to characters in JavaScript
- How to use Unicode and Special Characters in Tkinter?
- How do I print Unicode characters in the console using JavaScript?
- Convert UTF-8 to Unicode in Java
- Convert Unicode to UTF-8 in Java
- How to write Python Regular expression to remove non unicode characters?
- How to convert an integer to a unicode character in Python?
- How to fetch character from Unicode number - JavaScript?
- How to check if a unicode string contains only numeric characters in Python?
- How to create a plot title with unicode characters using ggplot2 in R?
- How to convert string to numerical values in MongoDB?
- How to use unicode () in Android sqlite?
- How to print Unicode character in C++?
- How to use unicode symbols in matplotlib?
- Convert List of Characters to String in Java
Advertisements