fork(1) download
  1. using System;
  2.  
  3. class Program
  4. {
  5. public static void Main()
  6. {
  7. string str1 = "\U0010FADE";
  8. string str2 = "\U0000FADE";
  9.  
  10. Console.WriteLine(str1.Length);
  11. Console.WriteLine(str2.Length);
  12.  
  13. Console.WriteLine(str1);
  14. Console.WriteLine(str2);
  15.  
  16. string str3 = "\u0010FADE";
  17. string str4 = "\u0000FADE";
  18.  
  19. Console.WriteLine(str3.Length);
  20. Console.WriteLine(str4.Length);
  21.  
  22. Console.WriteLine(str3);
  23. Console.WriteLine(str4);
  24. }
  25. }
Success #stdin #stdout 0.02s 15936KB
stdin
Standard input is empty
stdout
2
1
􏫞
﫞
5
5
FADE
FADE