Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.
Something like this will get you an NSString. You should be able to do the rest (if you can't read the documentation):

Code:
unichar ch = 0x2605; 
NSString*str = [NSString stringWithCharacters:&ch length:1];
 
Another option is:

Code:
[theTextField setStringValue:[NSString stringWithFormat:@"Twinkle, twinkle, little %C", 0x2605]];
 
The reason I used the solution I did is that some of the above depend on the source code file being UTF-8 and will break if it is not.

Lot's of good discussion here.
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.