I need to know what is the difference between char and Character in Java because when I was making a java program, the char worked while the Character didn\'t work.
Character is an Object - thus contains a number of static methods e.g. valueOf(char),toUpperCase()
where char is a primitive data-type