Copyright and Trademark Symbols in HTML

Contributor Icon Contributed by AlexTheBeast Date Icon October 3, 2003  
Tag Icon Tagged: HTML

The ASCII codes can be used to create several useful symbols. Here is a description of how to use ASCII code in your html pages.


ASCII codes in html can be identified with the preceding “&#”

They should be placed into the html just as plain text. The browser should render the ASCII code as the correct symbol.

© can be created with this:

©
® can be created with this:
®
™ can be created with this:
™

Previous recipe | Next recipe |
 
  • misterhaan
    note that these are not ascii codes. ascii only goes up to 127. the extended ascii characters for 169, 174, and 153 are ⌐, «, and Ö. the numbers are actually Unicode, which is why you get (C), (R), and (TM) instead of the extended ascii characters, which would have a completely different meaning.

    anyway, you're better off using © ® and ™
  • Anonymous
    <ul id="quote"><h6>misterhaan wrote:</h6>note that these are not ascii codes. ascii only goes up to 127. the extended ascii characters for 169, 174, and 153 are ⌐, «, and Ö. the numbers are actually Unicode, which is why you get (C), (R), and (TM) instead of the extended ascii characters, which would have a completely different meaning.

    anyway, you're better off using &copy; &reg; and &trade;</ul>


    It may be true that you can use those specific elements in place of the unicode, but one very nice thing about Unicode characters is that you can be assured that they will not change meaning over time, other than possible different interpretations of it by different languages/browsers.
  • Anonymous
    #2

    so
  • Anonymous
    In the text editor that comes with IE or Firefox, when i enter ® or &reg; or whatever i get ®
    How do i get the ® without the Â?
    Anyone know?
    Your help is appreciated!
    Andy
  • risherz
    <ul id="quote"><h6>andygman wrote:</h6>In the text editor that comes with IE or Firefox, when i enter ® or &reg; or whatever i get ®
    How do i get the ® without the Â?
    Anyone know?
    Your help is appreciated!
    Andy</ul>
    You can try holding down Alt and typing in 0174 for ® and Alt + 0169 for © etc... just use the character map (Start > All Programs > Accessories > System Tools > Character map) and you should be able to view the code for the symbol at the bottom left corner of the window..
  • Thanks for the reminder
  • source47
    Thanks! This helps out a lot! I searched for "html trademark code" (without the quotes) and this blog entry was on the first page! Nice!
  • boscoparade
  • Thanks for the info. I was looking for it.

    Regards
  • Six years later, this info still comes in handy. Thanks!
blog comments powered by Disqus