Java Stream Map Int to Char

hello.chars()
        .mapToObj(i -> (char)i)
        .forEach(System.out::println);
Dr. iterations