VOOZH about

URL: https://www.geeksforgeeks.org/c-sharp/c-sharp-char-tolowerinvariantchar-method/

⇱ C# | Char.ToLowerInvariant(Char) Method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

C# | Char.ToLowerInvariant(Char) Method

Last Updated : 11 Jul, 2025
This method is used to converts the value of a Unicode character to its lowercase equivalent using the casing rules of the invariant culture. Syntax:
public static char ToLowerInvariant (char c);
Here, c is the Unicode character to convert. Return Value: This method returns the lowercase equivalent of the c parameter, or the unchanged value of c, if c is already lowercase or not alphabetic. Below programs illustrate the use of Char.ToLowerInvariant(Char) Method: Example 1:
Output:
The lowercase equivalent of the A is a
The lowercase equivalent of the a is a
The lowercase equivalent of the B is b
The lowercase equivalent of the b is b
Example 2:
Comment
Article Tags:

Explore