| Nome del simbolo | Registered Sign |
| Versione Unicode | 1.1 |
| Unicode | U+00AE |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \00AE |
| Codice esadecimale | 0x00AE |
| Codice HTML | ® |
| LaTeX | \textregistered |
| Simbolo | ® |
| Codifica URL (percentuale UTF-8) | %C2%AE |
| Nome parlato / screen reader | Registered Sign |
| UTF-8 | C2 AE |
| UTF-16 | 00AE |
| UTF-32 | 000000AE |
1\documentclass{article}2\usepackage{pifont}3\textregistered4\end{document}Puoi digitare il simbolo registered sign sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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>La rappresentazione del simbolo Registered Sign nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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" |