public static string Encode(params int[] codePoints) => Punycode.Ucs2Encode(codePoints);
public static int[] Decode(string str) => Punycode.Ucs2Decode(str);