Convert int to char in java
will print out the char with Unicode code point 1 (start-of-heading char, which isn’t printable; see this table: C0 Controls and Basic Latin, same as ASCII) will print out the char with Unicode code point 49 (one corresponding to ‘1’) If you want to convert a digit (0-9), you can add 48 to it and cast, or something … Read more