Tester

public class Tester {
  public static void main(String[] args) {  
        String greeting = "Hello IS17!";
        char ch = greeting.charAt( 7 );
        System.out.print(ch);
  }
}
 

What is the output?
Be careful of the space/newline in your answer.