use this to get data from a database -
NSString *col1 = [NSString stringWithCString:(char *)sqlite3_column_text(compiledStatement, 0) encoding:NSUTF8StringEncoding];
and map col1 to UILabel.
Do not believe in NSLog, it will show unicode characters like \ U221a or something like this .. just pass these lines to UILabel and you are good to go
source share