
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Char.ConvertToUtf32(String, Int32) Method in C#
The Char.ConvertToUtf32(String, Int32) method in C# is used to convert the value of a UTF-16 encoded character or surrogate pair at a specified position in a string into a Unicode code point.
Syntax
Following is the syntax −
public static int ConvertToUtf32 (string str, int index);
Above, str is the string that contains a character or surrogate pair. The index parameter is the index position of the character or surrogate pair in str.
Example
Let us now see an example to implement the Char.ConvertToUtf32(String, Int32) method −
using System; public class Demo { public static void Main(){ int utf = 0x046; string str = Char.ConvertFromUtf32(utf); Console.WriteLine("Final Value = "+str); int res = Char.ConvertToUtf32(str, 0); Console.WriteLine("Actual Value = 0x{0:X}", res); } }
Output
This will produce the following output −
Final Value = F Actual Value = 0x46
Example
Let us now see another example −
using System; public class Demo { public static void Main(){ int utf = 0x057; string str = Char.ConvertFromUtf32(utf); Console.WriteLine("Final Value = "+str); int res = Char.ConvertToUtf32(str, 0); Console.WriteLine("Actual Value = 0x{0:X}", res); } }
Output
This will produce the following output −
Final Value = W Actual Value = 0x57
- Related Questions & Answers
- Char.IsControl(String, Int32) Method in C#
- Char.IsLowSurrogate(String, Int32) Method in C#
- Char.IsSurrogate(String, Int32) Method in C#
- Char.IsSurrogatePair(String, Int32) Method in C#
- Char.IsHighSurrogate(String, Int32) Method in C#
- Char.GetUnicodeCategory(String, Int32) Method with Examples in C#
- Char.ConvertFromUtf32(Int32) Method in C#
- Array.BinarySearch(Array, Int32, Int32, Object) Method with examples in C#
- Int32.CompareTo Method in C# with Examples
- Int32. Equals Method in C# with Examples
- Int32.GetHashCode Method in C# with Examples
- Int32.GetTypeCode Method in C# with Examples
- Represent Int32 as a String in C#
- Represent Int32 as a Binary String in C#
- Represent Int32 as a Hexadecimal String in C#
Advertisements