วิธี Char.ConvertFromUtf32(Int32) ใน C# ใช้เพื่อแปลงจุดโค้ด Unicode ที่ระบุเป็นสตริงที่เข้ารหัส UTF-16
ไวยากรณ์
ต่อไปนี้เป็นไวยากรณ์ -
public static string ConvertFromUtf32 (int utf32);
ด้านบน พารามิเตอร์ utf32 คือจุดโค้ด Unicode 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