In this particular case, there is actually a single Unicode character, which is a small “2” written above the line. This is U + 00B2 (upper superscript).
You should be able to do something like:
NSString *aString = [NSString stringWithUTF8String:"foot\u00b2"];
source share