• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
Actual Wizard

Actual Wizard

Great Content From Actual Wizards

  • Blogging
  • Programming
  • Social Media
  • Marketing
You are here: Home / Programming / HTML

HTML Trademark Symbol Code Example

November 16, 2020 by Kevin Marszalek

If you have a name, slogan, or a logo that you have protected with a trademark, you may want to indicate that you have done so on your website.

There are several solutions to display a trademark symbol, including those that use images, but the simplest solutions are to either use an HTML symbol or display the symbol as a CSS style.

Below are examples of both HTML techniques.

Pure HTML Example by Using the Symbol’s Entity Name

Example Brand Name™

Code Demo:

Example Brand Name™

Pure HTML Example by Using the Symbol’s Entity Number

Note: The number corresponds to the symbol’s HTML decimal code.

Example Brand Name™

Code Demo:

Example Brand Name™

HTML & CSS Example

Note: The code used to represent the entity in CSS is the entity’s hexadecimal code.

<style>
.my-class:after {
  content: "\2122";
}
</style> 
<div class="my-class">Our Brand</div>

Code Demo:

Our Brand

Commonly Used Trademark Symbols in HTML

You can use this table below to find the values of commonly used HTML entities that organizations use to represent their intellectual property.

SymbolHTML EntityDecimal CodeHex CodeDescription
™&trade;&#8482;&#x2122;Trademark Symbol
®&reg;&#174;&#x00AE;Registered Trademark Symbol
©&copy;&#169;&#x00A9;Copyright Symbol
℠None&#8480;&#x2120;Service Mark Symbol

Filed Under: HTML

Read More From Actual Wizard

  • Understanding the Different Parts of an Email Address
    An email address has four parts; the recipient name, the @ symbol, the domain name, and the top-level domain. …
  • How to Get the Last Element of an Array in JavaScript
    There are a number of different ways to get the last element of an array in JavaScript. Below we will explore …
  • How to use document.write() in JavaScript
    How to use document.write() in JavaScript The document.write() function is commonly used when testing simple …
  • How to Open a New Tab with JavaScript
    Opening a new browser window in a new tab can be done easily in JavaScript. Modern web browsers provide a …

Primary Sidebar

More posts from this section

  • PX to EM Converter – Online CSS Font Size Tool
  • How to Hide the URL Address in the Browser Status Bar
  • Heart Symbol HTML Code with Examples
  • HTML Trademark Symbol Code Example
  • Prevent a Phone Number from Wrapping to a New Line in CSS HTML
  • Html Tutorial Hello World Example with Code
  • Force a File to Download Instead of Opening it in a Browser with HTML

Copyright © 2023 ActualWizard.com

  • About
  • Terms of Service
  • Privacy Policy
  • Cookie Policy