C strings (and Objective-C @"Strings") are ascii by default, so to include unicode characters, you need to escape-U them: printf ("\u3232_\u3232\u2122\n");
printf ("\u3232_\u3232\u2122\n");