Hello I had some C code that reads: while (*src) { *dst++ = utf8_to_uvuni(src, &len); src += len; } but it seams utf8_to_uvuni is deprecated. What is the new way to do it? Thank you ambs