Open In App

How to add copyright symbol to your HTML document ?

Improve
Improve
Like Article
Like
Save
Share
Report

You can create an HTML copyright symbol using the © or © symbol codes. These are often enclosed within a paragraph. The ampersand denotes that want to embed a special character onto the web page. There are three ways to add such symbols to an HTML document.

Using HEX Code

If you want to add a copyright symbol (©) to your HTML document using hex code, you can insert the hex code © into your HTML code. Hex code is a way to represent characters in a hexadecimal (base-16) encoding system. In this case, “©” is the hex code that corresponds to the copyright symbol.

Example: This example illustrates the use of hex code to add a copyright symbol to your HTML document.

HTML




<!DOCTYPE html>
<html>
 
<head>
    <title>Add copyright symbol</title>
</head>
 
<body>
    <h2>Welcome To GFG</h2>
    <p>© Copyright, GFG</p>
</body>
 
</html>


Output:

Using HTML Entity

To add a copyright symbol to your HTML document using HTML entities, you can use `&copy;`. This HTML entity represents the copyright symbol (©) and can be inserted directly into your HTML code, simplifying the process of displaying copyright symbols without the need for hex codes.

Example: This example illustrates the use of HTML entity to add a copyright symbol to your HTML document.

HTML




<!DOCTYPE html>
<html>
 
<head>
    <title>Add copyright symbol</title>
</head>
 
<body>
    <h2>Welcome To GFG</h2>
    <p>© Copyright, GFG</p>
</body>
 
</html>


Output:

Using Decimal Unicode:

To include a copyright symbol (©) in your HTML document using Decimal Unicode, simply use the decimal Unicode value ‘©’.

Example: This example illustrates the use of decimal unicode to add a copyright symbol to your HTML document.

HTML




<!DOCTYPE html>
<html>
 
<head>
    <title>Add copyright symbol</title>
</head>
 
<body>
    <h2>Welcome To GFG</h2>
    <p>© Copyright, GFG</p>
</body>
 
</html>


Output:

Screenshot-2024-01-11-153410



Last Updated : 29 Jan, 2024
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads