1

I want to make sqlite manager db with superscript values and data for my unit converter app in iOS sdk like this image

and like this

Recently I found this this site but unable to find correct one Any help will be appreciated thanks..

How can i Store values like as above in my Sqlite3 manager database?

Here is the problem I Wanted to display

Vaibhav Limbani
  • 777
  • 1
  • 12
  • 29

1 Answers1

1

For example,

you want to use 20th and the th to be in superscript. First find the unicode characters of t and h.

t = (U+1D57)

h = (U+02B0)

So you pass in as String, like this: NSString *num = @"20\u1d57\u02b0";

To find the unicode characters, use character viewer in Mac.

lakshmen
  • 28,346
  • 66
  • 178
  • 276