keecode logokeecode
Home / HTML Entities / Copyright
©

Copyright

Copyright symbol

Common

HTML Codes

Named Entity

©

Numeric Code

©

Usage Examples

HTML Example (Named Entity)

<p>This is the Copyright: &copy;</p>

Output: This is the Copyright: ©

HTML Example (Numeric Code)

<p>This is the Copyright: &#169;</p>

Output: This is the Copyright: ©

JavaScript Example

const char = "&copy;";
console.log(char); // ©