if (v < 10) {
                sb.append((char)('0' + v));
            } else {
                sb.append((char)(v + ((int)'a' - 10)));
            }