| Nombre del símbolo | Small Asterisk |
| Versión Unicode | 1.1 |
| Unicode | U+FE61 |
| Bloque Unicode | |
| Categoría general | Other Punctuation (Po) |
| Código CSS | \FE61 |
| Código hexadecimal | 0xFE61 |
| Código HTML | ﹡ |
| LaTeX | \text{SMALLASTERISK} |
| Símbolo | ﹡ |
| Codificación URL (porcentaje UTF-8) | %EF%B9%A1 |
| Nombre oral / lector de pantalla | Small Asterisk |
| UTF-8 | EF B9 A1 |
| UTF-16 | FE61 |
| UTF-32 | 0000FE61 |
1\documentclass{article}2\usepackage{pifont}3\text{SMALLASTERISK}4\end{document}Puedes escribir el símbolo small asterisk en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 65121 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "small asterisk", or use Unicode Hex Input with FE61.
Ctrl + Shift + U, type fe61, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the emoji keyboard.
Paste from this page or use a keyboard with star and asterisk support.
1span.small-asterisk::before { content: "\FE61"; }1<span>﹡</span>La representación del símbolo Small Asterisk en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\uFE61' or String.fromCodePoint(65121) |
| Python | '\N{SMALL ASTERISK}' or chr(65121) |
| Rust | '\u{FE61}' |
| C / C++ | UTF-8 source or wchar_t with U+FE61 |
| Go | string(rune(0xFE61)) |
| Ruby | "\u{FE61}" |