| Nombre del símbolo | Circled Digit Four |
| Versión Unicode | 1.1 |
| Unicode | U+2463 |
| Bloque Unicode | |
| Categoría general | Other Number (No) |
| Código CSS | \2463 |
| Código hexadecimal | 0x2463 |
| Código HTML | ④ |
| LaTeX | {④} |
| Símbolo | ④ |
| Codificación URL (porcentaje UTF-8) | %E2%91%A3 |
| Nombre oral / lector de pantalla | Circled Digit Four |
| UTF-8 | E2 91 A3 |
| UTF-16 | 2463 |
| UTF-32 | 00002463 |
1\documentclass{article}2\usepackage{pifont}3{④}4\end{document}Puedes escribir el símbolo circled digit four en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 9315 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "circled digit four", or use Unicode Hex Input with 2463.
Ctrl + Shift + U, type 2463, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with enclosed numeral support.
1span.circled-digit-four::before { content: "\2463"; }1<span>④</span>La representación del símbolo Circled Digit Four en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u2463' or String.fromCodePoint(0x2463) |
| Python | '\N{CIRCLED DIGIT FOUR}' or chr(9315) |
| Rust | '\u{2463}' |
| C / C++ | UTF-8 source or wchar_t with U+2463 |
| Go | string(rune(0x2463)) |
| Ruby | "\u2463" |