C# में Char.ConvertFromUtf32(Int32) विधि का उपयोग निर्दिष्ट यूनिकोड कोड बिंदु को UTF-16 एन्कोडेड स्ट्रिंग में बदलने के लिए किया जाता है।
सिंटैक्स
निम्नलिखित वाक्य रचना है -
public static string ConvertFromUtf32 (int utf32);
ऊपर, पैरामीटर utf32 एक 21-बिट यूनिकोड कोड बिंदु है।
उदाहरण
आइए अब हम Char.ConvertFromUtf32(Int32) पद्धति को लागू करने के लिए एक उदाहरण देखें -
using System; public class Demo { public static void Main(){ int utf = 0x0051; string str = Char.ConvertFromUtf32(utf); Console.WriteLine("Value = "+str); } }
आउटपुट
यह निम्नलिखित आउटपुट उत्पन्न करेगा -
Value = Q
उदाहरण
आइए अब एक और उदाहरण देखें -
using System; public class Demo { public static void Main(){ int utf = 0x0046; string str = Char.ConvertFromUtf32(utf); Console.WriteLine("Value = "+str); } }
आउटपुट
यह निम्नलिखित आउटपुट उत्पन्न करेगा -
Value = F