uppercase character java code example
Example 1: how to make a char uppercase in java
char q = Character.toUpperCase('d');
Example 2: java uppercase
"Hello World".toUpperCase()
Example 3: how to convert char to uppercase java
char first = Character.toUpperCase(userIdea.charAt(0));
betterIdea = first + userIdea.substring(1);
Example 4: uppercase java
string s="hello";
s = Character.toUpperCase(s.charAt(0)) + s.substring(1);
The output will be: Hello