I'd like to use the Unicode version of '<' in an NSString but the compiler produces the error:
"Character '<' cannot be specified by a universal character name"
when I use:
NSString *text = @"Some Text: \u003C";
'<' seems to be a special character, as well as "=" and a few others so what's a way to insert a literal '<' inside the string, without literally using '<'
like so: "some string <"
?
I don't have control over the string value itself and the above value as in-line is for demonstration purpose.