How to Create the Copyright Symbol in HTML (2024)

The © or © symbols represent the HTML copyright sign. These symbols let you embed a copyright sign on a web page. The copyright sign does not appear on most keyboards so you need to use the HTML symbol code.

HTML has symbols and entities that may not necessarily be found on a keyboard easily, if they appear at all. This is because there are hundreds of possible symbols you may want to use on a computer. Your keyboard would have hundreds of keys to represent all the symbols.

Find your bootcamp match

GET MATCHED

By continuing you agree to our Terms of Service and Privacy Policy, and you consent to receive offers and opportunitiesfrom Career Karma by telephone, text message, and email.

X

By continuing you agree to our Terms of Service and Privacy Policy, and you consent to receive offers and opportunities from Career Karma by telephone, text message, and email.

This article explains how to create the copyright symbol in HTML using various shortcuts.

HTML Copyright Symbol

You can create an HTML copyright symbol using the © or © symbol codes. These are often enclosed within a paragraph. The ampersand denotes that want to embed a special character onto the web page.

The syntax for the copyright symbol is:

<p>© 2020 Career Karma</p>

This displays the following text:

© 2020 Career Karma

We could also use the © to achieve the same goal. The ampersand and semi-colon must be specified. Otherwise, the copyright symbol will not embed onto your web page. This is because © and © are special HTML characters.

When creating a web page, it’s often a good idea to claim ownership of what you create. This will give you some legal protection of your work. To claim ownership, use a copyright notice in your footer to protect your or your client’s material. You may want to use a copyright symbol to make your claim of ownership explicit.

Copyright HTML Reference

The following table illustrates the different ways you can create an HTML copyright symbol in your code:

How to Create the Copyright Symbol in HTML (1)

On a Windows or a Mac machine, there are special shortcuts you can use just to create the actual character itself. Alt + 0169 will get the copyright character (©) on Windows, while it is option + G on Mac.

Use the HTML Entity Name or Number to create the special character. Wrap &copy; or &#169; in a set of <span> tags and get the same result.

Copyright Symbol HTML Example

A common place to use a copyright symbol is in a footer. Let’s write a copyright notice that appears in a footer:

<footer><p>Created by Career Karma. © 2020</p></footer>

The HTML <footer> tag tells our code that we are creating a footer for our web page. Within that footer we have specified an HTML <p> tag. The <p> tag contains some text and a copyright symbol. Our code displays:

Created by Career Karma. © 2020

We have successfully created a copyright symbol.

Using HTML Copyright Symbol In Your Code

Let’s take a look at a full example of the HTML copyright symbol.

<!DOCTYPE html><html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width"> <title>repl.it</title> <link href="style.css" rel="stylesheet" type="text/css" /> <style> body { font-family: Arial } table, th, td { border: 1px solid black; border-collapse: collapse; } th, td { padding: 15px; } table, footer { margin: 20px auto; text-align: center; } tr:nth-child(even) { background-color: #dddddd; } span { color: blue; } </style> <script> function todayDate(){ var d = new Date(); var n = d.getFullYear() + " "; return document.getElementById("date").innerHTML = n; } </script> </head> <body onload=todayDate()> <table bordered> <tr> <th>Option</th> <th>shortcut or syntax</th> </tr> <tr> <td>Windows</td> <td>Alt + 0169</td> </tr> <tr> <td>Mac</td> <td>option + G</td> </tr> <tr> <td>HTML Entity Name</td> <td><span>&lt;span></span>&amp;copy;<span>&lt;span></span></td> </tr> <tr> <td>HTML Entity Number</td> <td><span>&lt;span></span>&amp;#169;<span>&lt;span></span></td> </tr> </table> <footer> &copy; <em id="date"></em>Career Karma </footer> </body></html>

We use the copyright symbol the fourth to last line in the footer HTML code. Switch out the ways to get them all to work for you.

Conclusion

The HTML copyright symbol is represented by &copy; or &#169;. You can use this code to embed the copyright symbol onto a web page if this character is not represented on your keyboard.

Do you want to learn more about HTML and how to become a web developer? Check out our complete How to Learn HTML guide. In this guide, you’ll find expert advice on learning HTML and a list of top online learning resources.

How to Create the Copyright Symbol in HTML (2024)

FAQs

How to Create the Copyright Symbol in HTML? ›

How to Code the Copyright Symbol in HTML. To add a copyright symbol to a web page, use the HTML entity for this symbol, &copy;. You can also use the HTML code &#169; to add this symbol to a page. Place this entity inside a paragraph, div, footer

footer
In typography and word processing, the page footer (or simply footer) of a printed page is a section located under the main text, or body. It is typically used as the space for the page number.
https://en.wikipedia.org › wiki › Page_footer
, or other tag to make it appear on a page.

How to create a copyright symbol? ›

Copyright and trademark symbols can also be added by using a keyboard shortcut. For example: To insert the copyright symbol, press Ctrl+Alt+C. To insert the trademark symbol, press Ctrl+Alt+T.

Which HTML code is used for copyright? ›

Some Other Entities Supported by HTML
CharNumberDescription
©&#169;COPYRIGHT
®&#174;REGISTERED
&#8364;EURO SIGN
&#8482;TRADEMARK
8 more rows

Is the copyright symbol enough? ›

And as mentioned before, the copyright symbol is generally not necessary. But the function of the symbol remains the same—to give notice that the identified work is protected by copyright.

How do I get symbols in HTML? ›

Incorporating symbols into HTML can be done using HTML entities, which are special strings of characters starting with an ampersand (&) and ending with a semicolon (;). These entities represent specific symbols and can be identified by their entity name or number.

How do I insert a copyright symbol in HTML? ›

To add a copyright symbol to a web page, use the HTML entity for this symbol, &copy;. You can also use the HTML code &#169; to add this symbol to a page. Place this entity inside a paragraph, div, footer, or other tag to make it appear on a page.

What is the code for the copyright symbol? ›

Typing the character

Windows: Alt + 0 1 6 9.

How to write in HTML code? ›

The HTML tags are enclosed within open tags (<>) and closed tags (</>). Suppose we have to create a paragraph, so in HTML, the paragraph is created by typing the open paragraph tag <p> and then entering a closed paragraph tag </p>. After writing a line of code, you can simply press Enter to go on the next line.

How to add trademark symbol in HTML? ›

Trade Mark Sign
  1. UNICODE. U+02122.
  2. HEX CODE. &#x2122;
  3. HTML CODE. &#8482;
  4. HTML ENTITY. &trade;
  5. CSS CODE. \2122. <span>&#8482;</span> content: "\2122";

What is the copyright symbol example? ›

Using a Copyright symbol: ©

How do you type ℗? ›

The ℗ character does not have a direct HTML entity, but you can use the UTF8 character set code for the character, which is '&#x2117;'. In Microsoft Word: Select the 'Insert' tab on Word's ribbon. Then select the 'Symbol' button.

How do I add a copyright symbol? ›

You can add a copyright symbol in a document to indicate that a work is protected by copyright law. In Windows, you can press Alt + 0169 on the numeric keyboard. On a Mac, insert the copyright symbol by pressing Option + G.

Can you add symbols in HTML? ›

HTML symbols like mathematical operators, arrows, technical symbols and shapes, are not present on a normal keyboard. To add these symbols to an HTML page, you can use the HTML entity name. If no entity name exists, you can use the entity number.

How do I insert an icon in HTML? ›

To insert an icon, add the name of the icon class to any inline HTML element. The <i> and <span> elements are widely used to add icons. All the icons in the icon libraries below, are scalable vector icons that can be customized with CSS (size, color, shadow, etc.)

How do you type the r with a circle around it? ›

Press and hold Alt while typing 0174 for the registered trademark (®) symbol. This code gives you the registered trademark symbol, which is the "R" in a circle. Remember, do not lift your finger from the Alt key until you've typed the series of numbers 0174 in order.

How can I create my own copyright? ›

To register a claim to copyright with the U.S. Copyright Office, the claimant must: (1) submit a properly completed application; (2) pay a nonrefundable fee; and (3) deposit the required number of copies of the works to be registered. How long does copyright protection last?

Top Articles
Latest Posts
Article information

Author: Aracelis Kilback

Last Updated:

Views: 6021

Rating: 4.3 / 5 (44 voted)

Reviews: 91% of readers found this page helpful

Author information

Name: Aracelis Kilback

Birthday: 1994-11-22

Address: Apt. 895 30151 Green Plain, Lake Mariela, RI 98141

Phone: +5992291857476

Job: Legal Officer

Hobby: LARPing, role-playing games, Slacklining, Reading, Inline skating, Brazilian jiu-jitsu, Dance

Introduction: My name is Aracelis Kilback, I am a nice, gentle, agreeable, joyous, attractive, combative, gifted person who loves writing and wants to share my knowledge and understanding with you.