| Nombre del símbolo | Registered Sign |
| Versión Unicode | 1.1 |
| Unicode | U+00AE |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \00AE |
| Código hexadecimal | 0x00AE |
| Código HTML | ® |
| LaTeX | \textregistered |
| Símbolo | ® |
| Codificación URL (porcentaje UTF-8) | %C2%AE |
| Nombre oral / lector de pantalla | Registered Sign |
| UTF-8 | C2 AE |
| UTF-16 | 00AE |
| UTF-32 | 000000AE |
1\documentclass{article}2\usepackage{pifont}3\textregistered4\end{document}Puedes escribir el símbolo registered sign en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Registered Sign en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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" |