Java - Change int to ascii -


What is a way to convert ASCI symbols to Java?

Do you int s to char s Want to change ?:

  EITIINT = 33; Char ch = (char) yourInt; Println (yourInt); Println (ch); // output: // 33 //!   

Do you int s to string s? Want to convert

  int yourInt = 33; String str = String.valueOf (yourInt);   

Or what does that mean?

Comments