// Add this test to SortedSetCommandTest
@Test
public void zrangebylexUnicode() throws Exception {
redis.zadd(key, 0d, "a");
redis.zadd(key, 0d, "富");
List<String> result = redis.zrangebylex(key, "[a", "[a\uFFFF");
assertThat(result).hasSize(1);
result = redis.zrangebylex(key, "[富", "[富\uFFFF");
assertThat(result).hasSize(1); // This will fail
}