HTML Entity for Copyright Sign (©)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+00A9

What You'll Learn

How to display the Copyright sign (©) in HTML using numeric references, the named entity, and CSS escapes. This character is U+00A9 (COPYRIGHT SIGN) in the Latin-1 Supplement block. It is used for copyright notices in footers, legal pages, publications, software credits, and branding.

You can use the named entity ©, hex © (or ©), decimal ©, or CSS \A9. The named entity © is the most common choice in HTML footers. Do not confuse © with Registered U+00AE (®) or Trademark U+2122 (™)—see symbol entities for those marks.

⚡ Quick Reference — Copyright Sign

Unicode U+00A9

Latin-1 Supplement

Hex Code ©

Hexadecimal reference

HTML Code ©

Decimal reference

Named Entity ©

Standard HTML entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+00A9
Hex code       ©
HTML code      ©
Named entity   ©
CSS code       \A9
1

Complete HTML Example

This example demonstrates the Copyright sign (©) using hexadecimal code, decimal HTML code, the named entity ©, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\A9";
  }
 </style>
</head>
<body>
<p>Copyright using Hexadecimal: &#x00A9;</p>
<p>Copyright using HTML Code: &#169;</p>
<p>Copyright using HTML Entity: &copy;</p>
<p id="point">Copyright using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+00A9 is universally supported in all browsers:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Copyright sign in common contexts:

Footer © 2026 CodeToFun
Legal Copyright © 2026. All rights reserved.
Publication © Author Name — First published 2024
Named entity Use &copy; in HTML footers and legal text
Monospace refs &#x00A9; &#169; &copy; \A9

🧠 How It Works

1

Hexadecimal Code

&#x00A9; (or &#xA9;) references code point U+00A9 using hex digits A9.

HTML markup
2

Decimal HTML Code

&#169; is the decimal equivalent (169) for the same character.

HTML markup
3

Named HTML Entity

&copy; is the standard named entity for U+00A9—widely used in footers and legal notices.

HTML markup
4

CSS Entity

\A9 is the CSS escape for U+00A9, used in the content property of ::before or ::after.

CSS stylesheet
=

Same visual result

All four methods produce the Copyright sign: ©. Unicode U+00A9 is in the Latin-1 Supplement block.

Use Cases

The Copyright sign (©) commonly appears in:

🌐 Website footers

Copyright notices at the bottom of pages (© 2026 Company Name).

📄 Legal pages

Terms of use, privacy policy, disclaimers, and compliance content.

📚 Publications

E-books, articles, and digital publications with copyright pages.

💻 Software & apps

About pages, license information, and credits in applications.

🎬 Media

Music, film, and gallery attribution and copyright notices.

🏷️ Branding

Product pages, packaging copy, and marketing with legal notices.

♿ Accessibility

Screen readers recognize ©; pair with the word “Copyright” in legal context when helpful.

💡 Best Practices

Do

  • Prefer &copy; in HTML footers and legal text
  • Use standard format: © Year Owner (e.g. © 2026 Your Company)
  • Keep entity style consistent when using references
  • Use \A9 only inside CSS content
  • Include publication year and copyright holder where appropriate

Don’t

  • Confuse copyright (©) with registered (®) or trademark (™)
  • Assume the symbol alone creates legal protection—consult counsel for notices
  • Use U+00A9 notation incorrectly—standard form is U+00A9
  • Put CSS escape \A9 in HTML text nodes
  • Mix entity styles randomly in one file

Key Takeaways

1

Named entity for footers

&copy;
2

Numeric references also render ©

&#x00A9; &#169;
3

For CSS stylesheets, use the escape in the content property

\A9
4

U+00A9 COPYRIGHT SIGN (Latin-1 Supplement)

5

Four methods, one glyph — universally supported

❓ Frequently Asked Questions

Use &copy; (named entity), &#x00A9; or &#xA9; (hex), &#169; (decimal), or \A9 in CSS content. All four methods render the copyright sign.
U+00A9 (COPYRIGHT SIGN). Latin-1 Supplement. Hex A9 (or 00A9), decimal 169.
In website footers, legal pages, publications, software credits, media attribution, and branding. The named entity &copy; is the most readable form for footer and legal text.
HTML entities (&copy;, &#169;, or &#x00A9;) go directly in markup. The CSS escape \A9 is used in stylesheets, typically in the content property of pseudo-elements.
Yes. &copy; is the named entity for U+00A9. It is one of the most commonly used named entities in HTML and is well supported in all browsers.

Explore More HTML Entities!

Discover 1500+ HTML character references — math operators, symbols, arrows, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful