| Symbol Name | Registered Sign |
| Unicode Version | 1.1 |
| Unicode | U+00AE |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \00AE |
| Hex Code | 0x00AE |
| HTML Code | ® |
| LaTeX | \textregistered |
| Symbol | ® |
| URL encode (UTF-8 percent) | %C2%AE |
| Spoken / screen reader name | Registered Sign |
| UTF-8 | C2 AE |
| UTF-16 | 00AE |
| UTF-32 | 000000AE |
1\documentclass{article}2\usepackage{pifont}3\textregistered4\end{document}You can type the registered sign symbol on most modern devices with the help of following methods:
Alt + 0174 on the numeric keypad, or insert via Character Map.
Option + R on common keyboard layouts, or Edit → Emoji & Symbols.
Ctrl + Shift + U, type 00ae, then Enter (layout-dependent).
Long-press the R key on supported keyboards, or paste from this page.
Long-press the R key on supported keyboards, or paste from this page.
1span.registered::before { content: "\00AE"; }1<span>®</span>Registered Sign symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u00AE' or String.fromCodePoint(0x00AE) |
| Python | '\N{REGISTERED SIGN}' or chr(174) |
| Rust | '\u{00AE}' |
| C / C++ | UTF-8 source or wchar_t with U+00AE |
| Go | string(rune(0x00AE)) |
| Ruby | "\u00AE" |