Copyright © tutorialspoint.com
The method returns the lowercase form of the specified char value.
char toLowerCase(char ch) |
Here is the detail of parameters:
Primitive character type
Returns the lowercase form of the specified char value.
public class Test{ public static void main(String args[]){ System.out.println( Character.toLowerCase('c')); System.out.println( Character.toLowerCase('C')); } } |
This produces following result:
c c |
Copyright © tutorialspoint.com