Hi!
I've to display the copyright symbol in my game(circled C). If you don't know what a copyright symbol is, please visit this link:
http://en.wikipedia.org/wiki/Copyright_symbol
How to display this symbol in C++?
Special Symbol
The value for © is 0xA9. Add it to your code like so:
Keep in mind that the font you use has to include the symbol.
Code: Select all
const char* text = "Copyright \xA9 Myself";
i find this useful. thanks!Nalin wrote:The value for © is 0xA9. Add it to your code like so:Keep in mind that the font you use has to include the symbol.Code: Select all
const char* text = "Copyright \xA9 Myself";
My company: http://www.kloena.com
My blog: http://www.zhieng.com
My co-working space: http://www.deskspace.info
My blog: http://www.zhieng.com
My co-working space: http://www.deskspace.info