fork(1) download
  1. using System;
  2. using System.Linq;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. string emoji = "😀";
  9. Console.WriteLine("{0}: Length: {1}, code units: {2}", emoji, emoji.Length, string.Join(", ", emoji.Select(x => "0x" + ((int)x).ToString("X4"))));
  10. }
  11. }
Success #stdin #stdout 0s 131200KB
stdin
Standard input is empty
stdout
😀: Length: 2, code units: 0xD83D, 0xDE00