
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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
Convert ASCII Code to String in Java
To convert ASCII to string, use the toString() method. Using this method will return the associated character.
Let’s say we have the following int value, which works as ASCII for us.
int asciiVal = 89;
Now, use the toString() method.
String str = new Character((char) asciiVal).toString();
Example
public class Demo { public static void main(String []args) { int asciiVal = 87; String str = new Character((char) asciiVal).toString(); System.out.println(str); } }
Output
W
Advertisements