public void TestIsCharacterValueGroup()
 {
     Assert.AreEqual(
         true,
         Bottomify.IsCharacterValueGroup("💖💖,,,,👉👈")
         );
     Assert.AreEqual(
         false,
         Bottomify.IsCharacterValueGroup("💖✨✨✨,,,,\u200B💖💖,\u200B💖💖✨🥺\u200B💖💖✨🥺,\u200B")
         );
     Assert.AreEqual(
         true,
         Bottomify.IsCharacterValueGroup("hello")
         );
 }