Character Constant vs String Constant in java
Character constant is enclosed in single quotes.
String constants are enclosed in double quotes.
Character constants are single digit or character.
String Constants are collection of characters.
Ex :’2’, ‘A’
Ex : “Hello World”