🔣 Symbol Reference

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

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

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

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>&copy; 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>&reg;</sup> renders as Brand®
  • Use only for marks that are actually registered
<p>Welcome to Acme&reg; — innovation since 1985.</p>
Platform Method
Windows Alt + 0174
macOS Option + R
HTML &reg; or &#174; or &#x00AE;
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&trade; makes backup effortless.</p>
Platform Method
Windows Alt + 0153
macOS Option + 2
HTML &trade; or &#8482; or &#x2122;
Python "\u2122"

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.&nbsp;&sect;&nbsp;107 (fair use).</p>
<p>Under &sect;&sect;&nbsp;201&ndash;205 of the Act...</p>
Platform Method
Windows Alt + 0167
macOS Option + 6
HTML &sect; or &#167; or &#x00A7;
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 &#x2116;&nbsp;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>&reg;</sup> Product<sup>&trade;</sup></p>

<!-- CSS approach -->
<style>
.legal-mark { font-size: 0.6em; vertical-align: super; }
</style>
<p>Brand<span class="legal-mark">&reg;</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.

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 &copy; 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).

Symbol Reference의 더 많은 가이드

Complete Arrow Symbols List

Unicode contains hundreds of arrow symbols spanning simple directional arrows, double arrows, …

All Check Mark and Tick Symbols

Unicode provides multiple check mark and tick symbols ranging from the classic …

Star and Asterisk Symbols

Unicode includes a rich collection of star shapes — from the simple …

Heart Symbols Complete Guide

Unicode contains dozens of heart symbols including the classic ♥, black and …

Currency Symbols Around the World

Unicode's Currency Symbols block and surrounding areas contain dedicated characters for over …

Mathematical Symbols and Operators

Unicode has dedicated blocks for mathematical operators, arrows, letterlike symbols, and alphanumeric …

Bracket and Parenthesis Symbols

Beyond the ASCII parentheses and square brackets, Unicode includes angle brackets, curly …

Bullet Point Symbols

Unicode offers a wide variety of bullet point characters beyond the standard …

Line and Box Drawing Characters

Unicode's Box Drawing block contains 128 characters for drawing lines, corners, intersections, …

Musical Note Symbols

Unicode includes musical note symbols such as ♩♪♫♬ in the Miscellaneous Symbols …

Fraction Symbols Guide

Unicode includes precomposed fraction characters for common fractions like ½ ¼ ¾ …

Superscript and Subscript Characters

Unicode provides precomposed superscript and subscript digits and letters — such as …

Circle Symbols

Unicode contains dozens of circle symbols including filled circles, outlined circles, circles …

Square and Rectangle Symbols

Unicode includes filled squares, outlined squares, small squares, medium squares, dashed squares, …

Triangle Symbols

Unicode provides a comprehensive set of triangle symbols in all orientations — …

Diamond Symbols

Unicode includes filled and outline diamond shapes, lozenge characters, and playing card …

Cross and X Mark Symbols

Unicode provides various cross and X mark characters including the heavy ballot …

Dash and Hyphen Symbols Guide

The hyphen-minus on your keyboard is just one of Unicode's many dash …

Quotation Mark Symbols Complete Guide

Unicode defines typographic quotation marks — curly quotes — for dozens of …

Degree and Temperature Symbols

The degree symbol ° (U+00B0) and dedicated Celsius ℃ and Fahrenheit ℉ …

Circled and Enclosed Number Symbols

Unicode's Enclosed Alphanumerics block provides circled numbers ①②③, parenthesized numbers ⑴⑵⑶, and …

Roman Numeral Symbols

Unicode includes a Number Forms block with precomposed Roman numeral characters such …

Greek Alphabet Symbols for Math and Science

Greek letters like α β γ δ π Σ Ω are widely …

Decorative Dingbats

The Unicode Dingbats block (U+2700–U+27BF) contains 192 decorative symbols originally from the …

Playing Card Symbols

Unicode includes a Playing Cards block with characters for all 52 standard …

Chess Piece Symbols

Unicode provides characters for all six chess piece types in both white …

Zodiac and Astrological Symbols

Unicode's Miscellaneous Symbols block includes the 12 zodiac signs ♈♉♊♋♌♍♎♏♐♑♒♓, planetary symbols, …

Braille Pattern Characters

Unicode's Braille Patterns block (U+2800–U+28FF) encodes all 256 possible combinations of the …

Geometric Shapes Complete Guide

Unicode's Geometric Shapes block contains 96 characters covering circles, squares, triangles, diamonds, …

Letterlike Symbols

The Unicode Letterlike Symbols block contains mathematical and technical symbols derived from …

Technical Symbols Guide

Unicode's Miscellaneous Technical block contains symbols from computing, electronics, and engineering, including …

Combining Characters and Diacritics Guide

Diacritics are accent marks and other marks that attach to letters to …

Whitespace and Invisible Characters Guide

Unicode defines dozens of invisible characters beyond the ordinary space, including zero-width …

Warning and Hazard Signs

Unicode includes warning and hazard symbols such as the universal caution ⚠ …

Weather Symbols Guide

Unicode's Miscellaneous Symbols block includes sun ☀, cloud ☁, rain ☂, snow …

Religious Symbols in Unicode

Unicode includes symbols for many of the world's major religions including the …

Gender and Identity Symbols

Unicode includes the traditional male ♂ and female ♀ symbols from astronomy, …

Keyboard Shortcut Symbols Guide

Apple's macOS uses Unicode characters for keyboard modifier keys such as ⌘ …

Symbols for Social Media Bios

Unicode symbols like ▶ ◀ ► ★ ✦ ⚡ ✈ and hundreds …