isUpperCase - Returns Whether the given character is uppercase or not
importjava.util.*;importjava.lang.*;classForgetCode{publicstaticvoidmain(String args[]){char chr='f';char chr1='C';if(Character.isUpperCase(chr1)){System.out.println("The Given Character is Uppercase");}}}
Tags for isUpperCase - Returns Whether the given character is uppercase or not in Java