Copyright, Trademark & Legal Symbols
Unicode includes dedicated characters for the copyright symbol ©, registered trademark ®, trademark ™, service mark ℠, and other legal and intellectual property symbols. This guide covers all legal Unicode symbols, their code points, HTML entities, and keyboard shortcuts on Mac and Windows.
A handful of Unicode symbols carry enormous legal weight. The copyright sign, trademark symbol, registered mark, and section sign appear in contracts, legislation, product labels, and web footers around the world. Getting these symbols right is not just a typographic concern — using the wrong character (or failing to use one at all) can have legal implications for intellectual property protection and regulatory compliance. This guide covers every legal symbol in Unicode, explains their proper usage, and provides the technical details developers need to display them correctly.
Quick Copy-Paste Table
| Symbol | Name | Code Point | HTML Entity | Usage |
|---|---|---|---|---|
| © | Copyright Sign | U+00A9 | © |
Copyright notice |
| ® | Registered Sign | U+00AE | ® |
Registered trademark |
| ™ | Trade Mark Sign | U+2122 | ™ |
Unregistered trademark |
| ℠ | Service Mark | U+2120 | ℠ |
Service mark |
| ℗ | Sound Recording Copyright | U+2127 | ℗ |
Sound recording copyright |
| § | Section Sign | U+00A7 | § |
Legal section reference |
| ¶ | Pilcrow Sign | U+00B6 | ¶ |
Paragraph mark |
| № | Numero Sign | U+2116 | № |
Number abbreviation |
| ℃ | Degree Celsius | U+2103 | ℃ |
Temperature (context) |
| ℅ | Care Of | U+2105 | ℅ |
Postal addressing |
Copyright Sign: © (U+00A9)
The copyright symbol is one of the most recognized legal symbols in the world. Under the Berne Convention (adopted by 181 countries), copyright protection is automatic upon creation of an original work — you do not need to display © to have copyright protection. However, the symbol serves several practical purposes:
- Notice to the public that the work is protected
- Identification of the copyright holder
- Date establishment of first publication
Proper Copyright Notice Format
The standard copyright notice format is:
© [Year of first publication] [Copyright owner name]
Examples:
© 2026 Acme Corporation
© 2020-2026 Jane Smith
Encoding and Input
| Platform | Method |
|---|---|
| Windows | Alt + 0169 |
| macOS | Option + G |
| HTML | © or © or © |
| CSS | content: "\00A9" |
| Python | "\u00A9" |
| LaTeX | \copyright or \textcopyright |
Copyright vs (c)
Many people type (c) as a substitute for ©. Some word processors and rich-text
editors auto-correct (c) to ©, but in plain text, HTML, and code, you should use
the actual Unicode character. The ASCII approximation (c) has no legal standing as
a copyright notice in many jurisdictions.
<!-- Correct -->
<footer>© 2026 Example Corp. All rights reserved.</footer>
<!-- Avoid in published text -->
<footer>(c) 2026 Example Corp. All rights reserved.</footer>
Registered Sign: ® (U+00AE)
The registered trademark symbol ® indicates that a word, phrase, logo, or symbol has been officially registered with a government trademark office (such as the USPTO in the United States or the EUIPO in the European Union). Using ® for an unregistered mark is illegal in many jurisdictions.
Proper Usage
- Place ® immediately after the trademarked term with no space:
Brand® - In superscript:
Brand<sup>®</sup>renders as Brand® - Use only for marks that are actually registered
<p>Welcome to Acme® — innovation since 1985.</p>
| Platform | Method |
|---|---|
| Windows | Alt + 0174 |
| macOS | Option + R |
| HTML | ® or ® or ® |
| Python | "\u00AE" |
| LaTeX | \textregistered |
Trade Mark Sign: ™ (U+2122)
The trademark symbol ™ indicates that a word, phrase, or logo is being claimed as a trademark, regardless of whether it has been officially registered. Unlike ®, anyone can use ™ — it simply asserts a claim of trademark rights.
™ vs ®
| Symbol | Meaning | Registration Required | Legal Status |
|---|---|---|---|
| ™ | Claimed trademark | No | Informal claim |
| ® | Registered trademark | Yes (government office) | Formal protection |
| ℠ | Claimed service mark | No | Informal claim (services) |
The distinction between trademark (™) and service mark (℠) is that trademarks apply to goods (physical products) while service marks apply to services. In practice, ™ is used far more frequently, and many style guides recommend ™ for both.
<p>Acme CloudSync™ makes backup effortless.</p>
| Platform | Method |
|---|---|
| Windows | Alt + 0153 |
| macOS | Option + 2 |
| HTML | ™ or ™ or ™ |
| Python | "\u2122" |
Sound Recording Copyright: ℗ (U+2117)
The sound recording copyright symbol ℗ (a P in a circle, for "phonogram") indicates copyright in a sound recording specifically, as distinct from the copyright in the underlying musical composition. A CD might display both:
- © for the composition, lyrics, and liner notes
- ℗ for the actual audio recording
℗ 2026 Universal Music Group
© 2026 Universal Music Publishing
This distinction matters because the recording and the composition often have different copyright holders and different terms of protection.
Section Sign: § (U+00A7)
The section sign (also called the "silcrow" or "double S") is used to reference specific sections of legal documents, statutes, and regulations. It is one of the most frequently used symbols in legal writing.
Usage Conventions
| Form | Meaning | Example |
|---|---|---|
| § | Single section | § 102 |
| §§ | Multiple sections | §§ 101–105 |
A thin space or non-breaking space should separate § from the number. In legal citation formats like Bluebook (used in US law), the section sign is mandatory:
<p>See 17 U.S.C. § 107 (fair use).</p>
<p>Under §§ 201–205 of the Act...</p>
| Platform | Method |
|---|---|
| Windows | Alt + 0167 |
| macOS | Option + 6 |
| HTML | § or § or § |
| Python | "\u00A7" |
| LaTeX | \S |
Pilcrow: ¶ (U+00B6)
The pilcrow ¶ (paragraph sign) is the paragraph-level counterpart to §. In legal documents, it references specific paragraphs within a section:
See § 107, ¶ 3 (describing the four-factor test).
In word processors, ¶ is the "show formatting marks" symbol that reveals paragraph breaks, making it familiar to anyone who has toggled invisible characters in Microsoft Word or Google Docs.
Numero Sign: № (U+2116)
The numero sign is a ligature of N and o used as an abbreviation for "number" in many European languages. It is particularly common in Russian (No. in English = № in Russian), German, and French legal and business documents.
<p>Order № 12345</p> <!-- Order № 12345 -->
While English-speaking countries typically write "No." or "#", the numero sign is the standard in much of continental Europe and is encoded as a single Unicode character rather than the two-character sequence "No".
Superscript Rendering
Legal symbols ® and ™ are often displayed in superscript for aesthetic reasons. There are two approaches:
<!-- HTML superscript -->
<p>Brand<sup>®</sup> Product<sup>™</sup></p>
<!-- CSS approach -->
<style>
.legal-mark { font-size: 0.6em; vertical-align: super; }
</style>
<p>Brand<span class="legal-mark">®</span></p>
Note that © is typically rendered at full size (not superscripted) because it appears at the beginning of standalone copyright notices, not inline after brand names.
Legal Symbols in Code
When working with legal symbols in source code:
# Python string with legal symbols
copyright_notice = "\u00A9 2026 Example Corp"
trademark = "CloudSync\u2122"
registered = "Acme\u00AE"
section_ref = "\u00A7 107"
# JSON (must use Unicode escapes in strict JSON)
# {"copyright": "\u00A9 2026 Example Corp"}
print(f"{copyright_notice}")
print(f"Product: {registered} {trademark}")
print(f"See {section_ref} for details.")
Key Takeaways
- © (U+00A9) is the copyright sign — automatic under the Berne Convention, but
still best practice to display. Use
©in HTML, Option+G on macOS. - ® (U+00AE) indicates a registered trademark — using it for unregistered marks is illegal in many jurisdictions.
- ™ (U+2122) claims trademark rights without registration; anyone can use it. ℠ (U+2120) is the service-mark equivalent.
- ℗ (U+2117) is specifically for sound recording copyright, distinct from © for compositions.
- § (U+00A7) is the section sign for legal citations; double it (§§) for ranges.
- Always use actual Unicode characters in published text rather than ASCII
approximations like
(c),(R), or(TM).
Plus dans Symbol Reference
Unicode contains hundreds of arrow symbols spanning simple directional arrows, double arrows, …
Unicode provides multiple check mark and tick symbols ranging from the classic …
Unicode includes a rich collection of star shapes — from the simple …
Unicode contains dozens of heart symbols including the classic ♥, black and …
Unicode's Currency Symbols block and surrounding areas contain dedicated characters for over …
Unicode has dedicated blocks for mathematical operators, arrows, letterlike symbols, and alphanumeric …
Beyond the ASCII parentheses and square brackets, Unicode includes angle brackets, curly …
Unicode offers a wide variety of bullet point characters beyond the standard …
Unicode's Box Drawing block contains 128 characters for drawing lines, corners, intersections, …
Unicode includes musical note symbols such as ♩♪♫♬ in the Miscellaneous Symbols …
Unicode includes precomposed fraction characters for common fractions like ½ ¼ ¾ …
Unicode provides precomposed superscript and subscript digits and letters — such as …
Unicode contains dozens of circle symbols including filled circles, outlined circles, circles …
Unicode includes filled squares, outlined squares, small squares, medium squares, dashed squares, …
Unicode provides a comprehensive set of triangle symbols in all orientations — …
Unicode includes filled and outline diamond shapes, lozenge characters, and playing card …
Unicode provides various cross and X mark characters including the heavy ballot …
The hyphen-minus on your keyboard is just one of Unicode's many dash …
Unicode defines typographic quotation marks — curly quotes — for dozens of …
The degree symbol ° (U+00B0) and dedicated Celsius ℃ and Fahrenheit ℉ …
Unicode's Enclosed Alphanumerics block provides circled numbers ①②③, parenthesized numbers ⑴⑵⑶, and …
Unicode includes a Number Forms block with precomposed Roman numeral characters such …
Greek letters like α β γ δ π Σ Ω are widely …
The Unicode Dingbats block (U+2700–U+27BF) contains 192 decorative symbols originally from the …
Unicode includes a Playing Cards block with characters for all 52 standard …
Unicode provides characters for all six chess piece types in both white …
Unicode's Miscellaneous Symbols block includes the 12 zodiac signs ♈♉♊♋♌♍♎♏♐♑♒♓, planetary symbols, …
Unicode's Braille Patterns block (U+2800–U+28FF) encodes all 256 possible combinations of the …
Unicode's Geometric Shapes block contains 96 characters covering circles, squares, triangles, diamonds, …
The Unicode Letterlike Symbols block contains mathematical and technical symbols derived from …
Unicode's Miscellaneous Technical block contains symbols from computing, electronics, and engineering, including …
Diacritics are accent marks and other marks that attach to letters to …
Unicode defines dozens of invisible characters beyond the ordinary space, including zero-width …
Unicode includes warning and hazard symbols such as the universal caution ⚠ …
Unicode's Miscellaneous Symbols block includes sun ☀, cloud ☁, rain ☂, snow …
Unicode includes symbols for many of the world's major religions including the …
Unicode includes the traditional male ♂ and female ♀ symbols from astronomy, …
Apple's macOS uses Unicode characters for keyboard modifier keys such as ⌘ …
Unicode symbols like ▶ ◀ ► ★ ✦ ⚡ ✈ and hundreds …