Courses
Tutorials
Practice
Data Structure
Java
Python
HTML
Interview Preparation
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
SQL
Web Development
System Design
Aptitude
GfG Premium
Similar Topics
Web Technologies
37.4K+ articles
DSA
22.8K+ articles
Python
21.3K+ articles
Experiences
16.6K+ articles
Interview Experiences
14.2K+ articles
JavaScript
12.2K+ articles
Misc
8.8K+ articles
C#
1.9K+ articles
CSharp-method
701+ articles
C# Programs
126+ articles
CSharp-Char-Struct
28 posts
Recent Articles
Popular Articles
C# | Char.GetNumericValue() Method
Last Updated: 01 February 2019
In C#, Char.GetNumericValue() is a System.Char struct method which is used to convert a numeric Unicode character into a double-precision floating-point number. The numeri...
read more
Misc
C#
CSharp-method
CSharp-Char-Struct
C# | Char.ConvertFromUtf32(Int32) Method
Last Updated: 27 December 2022
This method is used to converts the specified Unicode code point into a UTF-16 encoded string.Syntax:public static string ConvertFromUtf32 (int utf32);Here, utf32 is a 21-...
read more
C#
CSharp-method
CSharp-Char-Struct
C# | Char.ConvertToUtf32(String, Int32) Method
Last Updated: 05 December 2019
This method is used to converts the value of a UTF-16 encoded character or surrogate pair at a specified position in a string into a Unicode code point.Syntax:public stati...
read more
C#
CSharp-method
CSharp-Char-Struct
C# | Char.GetHashCode() Method with Examples
Last Updated: 20 January 2023
This method is used to return the hash code for this instance.Syntax:public override int GetHashCode ();Return Value: This method returns a 32-bit signed integer hash code...
read more
C#
C# Programs
CSharp-method
CSharp-Char-Struct
C# | Char.GetTypeCode() Method with Examples
Last Updated: 11 August 2021
This method is used to return the TypeCode for value type Char.Syntax:public TypeCode GetTypeCode ();Return Value: This method returns the enumerated constant, Char.Below ...
read more
C#
CSharp-method
CSharp-Char-Struct
C# | Char.GetUnicodeCategory(String, Int32) Method with Examples
Last Updated: 17 January 2023
This method is used to categorizes the character at the specified position in a specified string into a group identified by one of the UnicodeCategory values.Syntax:public...
read more
C#
CSharp-method
CSharp-Char-Struct
C# | Char.IsControl(String, Int32) Method
Last Updated: 08 February 2023
This method is used to indicates whether the character at the specified position in a specified string is categorized as a control character.Syntax:public static bool IsCo...
read more
C#
CSharp-method
CSharp-Char-Struct
C# | Char.IsHighSurrogate(String, Int32) Method
Last Updated: 07 September 2022
This method is used to indicates whether the Char object at the specified position in a string is a high surrogate or not. Syntax:public static bool IsHighSurrogate (strin...
read more
C#
CSharp-method
CSharp-Char-Struct
C# | Char.IsLowSurrogate(String, Int32) Method
Last Updated: 07 September 2022
This method is used to indicates whether the Char object at the specified position in a string is a low surrogate or not. Syntax:public static bool IsLowSurrogate (string ...
read more
C#
CSharp-method
CSharp-Char-Struct
C# | Char.IsSurrogate(String, Int32) Method
Last Updated: 16 January 2023
This method is used to indicates whether the character at the specified position in a specified string has a surrogate code unit or not. Syntax:public static bool IsSurrog...
read more
C#
CSharp-method
CSharp-Char-Struct
C# | Char.IsSurrogatePair(String, Int32) Method
Last Updated: 01 February 2019
This method is used to indicates whether two adjacent Char objects at a specified position in a string form a surrogate pair or not.Syntax:public static bool IsSurrogatePa...
read more
C#
CSharp-method
CSharp-Char-Struct
C# | Char.Parse(String) Method
Last Updated: 01 February 2019
This method is used to convert the value of the specified string to its equivalent Unicode character.Syntax:public static char Parse (string s);Here, s is a string that co...
read more
C#
CSharp-method
CSharp-Char-Struct
C# | Char.ToLowerInvariant(Char) Method
Last Updated: 19 December 2019
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 ToLo...
read more
C#
CSharp-method
CSharp-Char-Struct
C# | Char.ToUpperInvariant(Char) Method
Last Updated: 07 December 2021
This method is used to converts the value of a Unicode character to its uppercase equivalent using the casing rules of the invariant culture.Syntax:public static char ToUp...
read more
C#
CSharp-method
CSharp-Char-Struct
C# - Char Struct
Last Updated: 04 February 2025
In C#, the Char struct is used to represent a single Unicode character as a UTF-16 code unit, defined under the System namespace. A Char in C# is a 16-bit value, and it ca...
read more
C#
CSharp-Char-Struct
1
2
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !