Horje
How to add copyright symbol to your HTML document ?

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.

Below are the methods to add copyright symbols to your 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 lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" 
          content="width=device-width, initial-scale=1.0">
    <title>Add copyright symbol</title>
</head>

<body>
    <h6>Using HEX Code</h6>
    <p>© Copyright, GFG</p>
</body>

</html>

Output:

usinghex

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 lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" 
          content="width=device-width, initial-scale=1.0">
    <title>Add copyright symbol</title>
</head>

<body>
    <h5>Using HTML Entity</h5>
    <p>&copy; Copyright, GFG</p>
</body>

</html>

Output:

HTMLentity

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 lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" 
          content="width=device-width, initial-scale=1.0">
    <title>Add copyright symbol</title>
</head>

<body>
    <h5>Using Decimal Unicode</h5>
    <p>© Copyright, GFG</p>
</body>

</html>

Output:

decimalunicode

Output




Reffered: https://www.geeksforgeeks.org


HTML

Related
Fabric.js ActiveSelection paintFirst Property Fabric.js ActiveSelection paintFirst Property
Fabric.js ActiveSelection perPixelTargetFind Property Fabric.js ActiveSelection perPixelTargetFind Property
Fabric.js ActiveSelection evented Property Fabric.js ActiveSelection evented Property
Fabric.js ActiveSelection strokeDashOffset Property Fabric.js ActiveSelection strokeDashOffset Property
Fabric.js ActiveSelection moveCursor Property Fabric.js ActiveSelection moveCursor Property

Type:
Geek
Category:
Coding
Sub Category:
Tutorial
Uploaded by:
Admin
Views:
11