using System;
using System.Text;
public class Program
{
public static void Main()
var s = "𝒿";
Console.WriteLine(s);
Console.WriteLine(s.Length);
}