so I all I want for this to do is to print out the chars instead of the ascii values...
str.chars()
.distinct()
.forEach(System.out::println);
this is the output:
97
98
99
100
does anyone know how to fix this?