Copyright Symbol
The copyright sign is represented as c inside a circle. The symbol means that the owner of the work has all rights and that the work is legally protected.
Shortcodes
Copy and paste codes for Copyright Symbol © to use in your websites, apps, blogs, and more.
U+00A9
0169
©
©
©
\00A9
\u00A9
0x00A9
%C2%A9
Customize Copyright Symbol Symbol
Customize © symbol as you like and download Copyright Symbol as SVG or PNG or copy its HTML code to use in your projects.
How to type Copyright Symbol © ?
Using Copyright Symbol Alt Code:
You can type the Copyright Symbol © using your keyboard by using the Alt Code for Copyright Symbol. Before you begin, ensure that your Num Lock is turned on, and use the Numpad to type the code. Then, follow these simple steps:
- Hold down the Alt key on your keyboard.
- Type the number 0169 using the Numpad.
- Release the Alt key.
This will make the © appear on your screen.
How to add Copyright Symbol in HTML, CSS, and JS?
Insert © Copyright Symbol using HTML
<span>©</span>
<span>©</span>
<span>©</span>
<span>©</span>
Add Copyright Symbol with CSS
.copyright-symbol::before {
content: '\\00A9';
}
Copyright Symbol JavaScript Code
document.querySelector('.copyright-symbol').textContent = '©';
document.querySelector('.copyright-symbol').textContent = '\u00A9';