How to write special text on comment

 

How i am show on comment show special text like : copyright (c)

How to write on comment this special test : "(c)"

 

as simple as it sounds

Comment("Copyright © ");

or by it's ASCII code

Comment("Copyright " + CharToStr(169));

ASCII code for copyright symbol = 169

http://www.dq.winsila.com/wp-content/uploads/2008/06/charmap-screenshot-thumb.png

Reason: