ashish yadav <ashishyada...@gmail.com> wrote:
> I want to know Unicode vale of Character given in string ( Like chines ,
> Japanese etc) .
> 
> If there is any API which can help in this ?

Retrive the string as UTF-16 with sqite3_column_text16 (SQLite automatically 
converts between UTF-8 and UTF-16 as necessary). You'll get the string as a 
sequence of 16-bit unsigned integers, each representing a single Unicode 
codepoint, or else one half of a surrogate pair.
-- 
Igor Tandetnik

_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to