How to add copyright symbol character to string?

I would like to add a copyright symbol to the footer part UITableView. How to place this character in a string in an application?

+3
source share
2 answers
[NSString stringWithFormat:@"Copyright \u00A9 2010"]

This solved my problem.

+9
source

http://blog.ablepear.com/2010/07/objective-c-tuesdays-unicode-string.html

The same approach as any other programming language / language that does not have UTF source files.

0
source

Source: https://habr.com/ru/post/1761977/