Symbols & Shapes
®

Registered Trademark Symbol (®)

The registered trademark symbol provides notice that the preceding mark has been officially registered with a national trademark office.

One-Click Copyable Code Formats

HTML Named Entity
®
HTML Decimal Code
®
HTML Hex Code
®
CSS content (\XXXX)
\00AE
JavaScript Unicode (\uXXXX)
\u00AE
URL Percent Encoded
%C2%AE

Real-World Implementation Snippets

HTML5 Document
<p>Example: &reg;</p>
CSS ::before / ::after
.badge::before { content: '\00AE '; }
React JSX / TypeScript
<span>{"\u00AE"}</span>
Frequently Asked Questions

Registered Trademark Symbol (®) HTML Entity FAQ

Common questions regarding HTML escape codes, CSS pseudo-elements, and browser character encoding.

The standard HTML named entity is "&reg;". If using numeric codes, you can use the decimal code "&#174;" or hex code "&#xAE;".