NSString *cellValue = [listOfItems objectAtIndex:indexPath.row];
cell.textLabel.text = cellValue;
listOfItems is an NSMutableArray
which gets values from sqlite table in the format "\u0C35\u0c36\u0C37".
When UITABLEVIEW
is loaded I am seeing again same values "\u0C35\u0c36\u0C37" in the table.
But if I assign cell.textLabel.text = @"\u0C35\u0c36\u0C37"
, I am getting the unicode equivalent characters(I mean international characters).