does any one know why that symbol is there next to the copyright? R&W Brokerage Inc. © 2013 does anyone know how to get rid of it this is what i have it saying and then on the web page that little symbol comes up. R&W Brokerage Inc. © 2013
3 Answers
That happens because the page isn't being displayed in UTF-8 encoding while your HTML source is encoded as such (but probably lacks the byte order mark that indicates UTF-8 encoding). Put either the HTML4 <meta http-equiv="Content-type" content="text/html;charset=UTF-8">
or the HTML5 <meta charset="UTF-8">
inside the <head>
element.
(The reason I know that specifically is the issue is that I just had the same issue, albeit with a Python script being opened in a text editor that doesn't auto-detect that the encoding is UTF-8 if the BOM or a file encoding directive isn't included.)

- 20,783
- 6
- 71
- 80
Did you use the © code ? Can you show us the source of your code ? Did you try to change the encoding in your browser ? try with firefox to change the encoding, if changing the encoding fixes the displaying of the copyright caracter, that means that you have a encoding problem ..

- 539
- 1
- 11
- 32
You might have an encoding problem. check out THIS answer that was posted a few months ago..

- 1
- 1

- 194
- 1
- 1
- 15
R&W Brokerage Inc.© 2013
– Billy S. Anthony III Jul 05 '13 at 16:54