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 useful codes for copyright symbol © to use in websites, apps, blogs, and docs.

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

Customize Copyright Symbol

Customize ©, download it as SVG or PNG, or copy the generated HTML snippet.

©
  

How to use Copyright Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>©</span>
HTML Code:
<span>&#169;</span>
HTML Entity:
<span>&copy;</span>
HEX Code:
<span>&#x00A9;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.copyright-symbol').textContent = '©';
copied