I am able to successfully subscript numbers by using:
static const unichar kSubscriptZero = 0x2080;
int numberOfHydrogens = 2;
NSString *water = [NSString stringWithFormat:@"H%CO",
kSubscriptZero + numberOfHydrogens];
The above code prints out a nicely formatted > H2O (with of course the 2 as subscript), I am having an issue doing the same with other unicode characters (that are not numbers) for example the 209C
which is a subscript t. Instead of my subscript t, i get a square box... can someone please tell me the right way this can be done?