
- C# Basic Tutorial
- C# - Home
- C# - Overview
- C# - Environment
- C# - Program Structure
- C# - Basic Syntax
- C# - Data Types
- C# - Type Conversion
- C# - Variables
- C# - Constants
- C# - Operators
- C# - Decision Making
- C# - Loops
- C# - Encapsulation
- C# - Methods
- C# - Nullables
- C# - Arrays
- C# - Strings
- C# - Structure
- C# - Enums
- C# - Classes
- C# - Inheritance
- C# - Polymorphism
- C# - Operator Overloading
- C# - Interfaces
- C# - Namespaces
- C# - Preprocessor Directives
- C# - Regular Expressions
- C# - Exception Handling
- C# - File I/O
- C# Advanced Tutorial
- C# - Attributes
- C# - Reflection
- C# - Properties
- C# - Indexers
- C# - Delegates
- C# - Events
- C# - Collections
- C# - Generics
- C# - Anonymous Methods
- C# - Unsafe Codes
- C# - Multithreading
- C# Useful Resources
- C# - Questions and Answers
- C# - Quick Guide
- C# - Useful Resources
- C# - Discussion
Check whether the Unicode character is a lowercase letter in C#
To check whether the Unicode character is a lowercase letter, the code is as follows −
Example
using System; public class Demo { public static void Main() { bool res; char val = 'K'; Console.WriteLine("Value = "+val); res = Char.IsLower(val); Console.WriteLine("Is the value a lowercase letter? = "+res); } }
Output
This will produce the following output −
Value = K Is the value a lowercase letter? = False
Example
Let us see another example −
using System; public class Demo { public static void Main() { bool res; char val = 'd'; Console.WriteLine("Value = "+val); res = Char.IsLower(val); Console.WriteLine("Is the value a lowercase letter? = "+res); } }
Output
This will produce the following output −
Value = d Is the value a lowercase letter? = True
- Related Articles
- Check whether the specified Unicode character is a letter or a decimal digit in C#
- Check whether the Unicode character is a separator character in C#
- Check whether a character is Lowercase or not in Java
- Check whether the specified Unicode character is a punctuation mark in C#
- Indicate whether the specified Unicode character is white space in C#
- Check whether the entered value is a letter or not in Java
- Check whether a String has only unicode digits in Java
- How to check whether a string is in lowercase or uppercase in R?
- How to check if a given character is a number/letter in Java?
- How to check if a character in a string is a letter in Python?
- Check whether a character is Uppercase or not in Java
- Capitalize last letter and Lowercase first letter of a word in Java
- How to check if first character in a cell is a letter or number in Excel?
- How to check whether a character is in the Alphabet or not in Golang?
- Java Program to check whether the entered value is ASCII 7-bit alphabetic lowercase

Advertisements