static void TestUnpack(string hex)
        {
            var bytes = hex.HexToByteArray();

            Console.WriteLine("de convert to gsm pack: " + GSM7bitConverter.UnpackByteArray(bytes).ToHexString());
        }