How to NSLog ASCII infinite symbol?
iphone, objective-c
Solution
Assuming it doesn't have to be a C `char` you could use the UTF encoding of the infinity symbol in an `NSString`:
NSLog(@"%@", @"\u221E");
Problem
I have ``` NSLog(@"%c", (char) 236); ``` trying to print the infinite symbol defined in ASCII. But that doesn't work. Any help?