HTML provides a Copyright symbol or sign in order to be used in web publications like blogs, papers, web pages, etc. Copyright symbol/sign simply used to express given publishing is copyrighted to the provided entities. In this tutorial, we will learn how to add a Copyright symbol/sign as an HTML tag.
What Is Copyright?
Copyright is a term that is defined by the US Copyright Office with the following explanation. “Copyright is a form of protection grounded in the U.S. Constitution and granted by law for original works of authorship fixed in a tangible medium of expression. Copyright covers both published and unpublished works.”
HTML Copyright Symbol/Sign
Copyright Sign or Symbol can be printed in a graphical manner in HTML in different ways. There is 3 way to print the Copyright Sign/Symbol. Name code, Decimal Code or Hex Code can be used to print Copyright.
Name Code
Name code is the most popular way where we will provide ©
which is the human-readable format for the Copyright
.
Decimal Code
The copyright can be printed by using the ©
code which is in decimal form.
Hexadecimal Code
We can also express the copyright code by using hexadecimal presentation with ©
<html> <body> <p>This is Name Code Copyright ©</p> <p>This is Decimal Code Copyright ©</p> <p>This is Hexadecimal Code Copyright ©</p> </body> </html>

Use C Inside Circle For Copyright Sign/Symbol
HTML also provides the C letter inside a circle. This will look very same as the Copyright symbol. We can use &#9400;
and &#x24B8;
in order to print the C letter inside the circle.
<html> <body> <p>This is Name Code Copyright ©</p> <p>This is Decimal Code Copyright ©</p> <p>This is Hexadecimal Code Copyright ©</p> <br><br> <p>This is Decimal Code Copyright with C letter Ⓒ</p> <p>This is Hexadecimal Code Copyright with C letter Ⓒ</p> </body> </html>

Put Text For Copyright
A popular use case for the copyright information is adding some text after the copyright sign/symbol. This text generally explains the content copyright information with generall sentences like Copyright 2019 Poftut.com
. Below there is an example of a copyright symbol/sign with some text.
<html> <body> <p> © Copyright 2019 Poftut.com</p> <p>© Copyright 2019 Poftut.com</p> <p>© Copyright 2019 Poftut.com</p> </body> </html>
Put Text For Copyright
Put Date/Year Information For Copyright
Another useful information related to the date or year about the copyright. This is generally used to set the copyright start date where the content can be used freely after the time period the copyright ends. We can the date or year information statically or dynamically by using JavaScript.
<html> <body> <script type = "text/javascript"> document.write("<p> © Copyright " + new Date().getFullYear() ); </script> </p> <script type = "text/javascript"> document.write("<p> © Copyright " + new Date().getFullYear() ); </script> </p> <script type = "text/javascript"> document.write("<p> © Copyright " + new Date().getFullYear() ); </script> </p> </body> </html>