Registered Sign

®

Shortcodes

Copy and paste codes for Registered Sign symbol ® to use in your websites, apps, blogs, and more.

Unicode
U+00AE
Alt Code
0174
HTML Code
®
HTML Entity
®
HEX Code
®
CSS Code
\00AE
JS/JSON
\u00AE
Unix/C/PHP/JAVA
0x00AE
URL-encode
%C2%AE
copied

Customize Registered Sign Symbol

Customize ® symbol as you like and download Registered Sign as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
®

                        
                    

How to type Registered Sign symbol ® ?

Using Registered Sign Alt Code:

You can type the Registered Sign symbol ® using your keyboard by using the Alt Code for Registered Sign. Before you begin, ensure that your Num Lock is turned on, and use the Numpad to type the code. Then, follow these simple steps:

  1. Hold down the Alt key on your keyboard.
  2. Type the number 0174 using the Numpad.
  3. Release the Alt key.

This will make the ® appear on your screen.

How to add Registered Sign symbol in HTML, CSS, and JS?

Insert ® Registered Sign using HTML

1. Copy-paste Registered Sign directly:
<span>®</span>
2. HTML Decimal Code:
<span>&#174;</span>
3. HTML Entity:
<span>&reg;</span>
4. Hexadecimal Code:
<span>&#x00AE;</span>
Preview: ®

Add Registered Sign symbol with CSS

.registered-sign::before {
    content: '\\00AE';
}
Preview: Registered Sign

Registered Sign JavaScript Code

1. Direct Symbol:
document.querySelector('.registered-sign').textContent = '®';
2. Unicode Escape for ®:
document.querySelector('.registered-sign').textContent = '\u00AE';
Preview: ®