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.

Unicode
U+00A9
Alt Code
0169
HTML Code
©
HTML Entity
©
HEX Code
©
CSS Code
\00A9
JS/JSON
\u00A9
Unix/C/PHP/JAVA
0x00A9
URL-encode
%C2%A9
copied

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.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
©

                        
                    

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:

  1. Hold down the Alt key on your keyboard.
  2. Type the number 0169 using the Numpad.
  3. 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

1. Copy-paste Copyright Symbol directly:
<span>©</span>
2. HTML Decimal Code:
<span>&#169;</span>
3. HTML Entity:
<span>&copy;</span>
4. Hexadecimal Code:
<span>&#x00A9;</span>
Preview: ©

Add Copyright Symbol with CSS

.copyright-symbol::before {
    content: '\\00A9';
}
Preview: Copyright Symbol

Copyright Symbol JavaScript Code

1. Direct Symbol:
document.querySelector('.copyright-symbol').textContent = '©';
2. Unicode Escape for ©:
document.querySelector('.copyright-symbol').textContent = '\u00A9';
Preview: ©