Symbols & Shapes
©

Copyright Symbol (©)

The copyright sign (C in a circle) used in copyright notices across web footers and legal terms to declare authorship rights.

One-Click Copyable Code Formats

HTML Named Entity
©
HTML Decimal Code
©
HTML Hex Code
©
CSS content (\XXXX)
\00A9
JavaScript Unicode (\uXXXX)
\u00A9
URL Percent Encoded
%C2%A9

Real-World Implementation Snippets

HTML5 Document
<p>Example: &copy;</p>
CSS ::before / ::after
.badge::before { content: '\00A9 '; }
React JSX / TypeScript
<span>{"\u00A9"}</span>
Frequently Asked Questions

Copyright Symbol (©) HTML Entity FAQ

Common questions regarding HTML escape codes, CSS pseudo-elements, and browser character encoding.

The standard HTML named entity is "&copy;". If using numeric codes, you can use the decimal code "&#169;" or hex code "&#xA9;".