map stream from integer to char code example
Example: java stream map int to char
hello.chars()
.mapToObj(i -> (char)i)
.forEach(System.out::println);
hello.chars()
.mapToObj(i -> (char)i)
.forEach(System.out::println);