if (c >= 'a'.charCodeAt(0) && c <= 'z'.charCodeAt(0)) {
      sb.append(c - 97 + 14);
      return 1;
    }