| Nombre del símbolo | Fullwidth Asterisk |
| Versión Unicode | 1.1 |
| Unicode | U+FF0A |
| Bloque Unicode | |
| Categoría general | Other Punctuation (Po) |
| UTF-8 | EF BC 8A |
| UTF-16 | FF0A |
| UTF-32 | 0000FF0A |
1\documentclass{article}2\usepackage{pifont}3\text{FULLWIDTHASTERISK}4\end{document}Puedes escribir el símbolo fullwidth asterisk en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 65290 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "fullwidth asterisk", or use Unicode Hex Input with FF0A.
Ctrl + Shift + U, type ff0a, 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.fullwidth-asterisk::before { content: "\FF0A"; }1<span>*</span>La representación del símbolo Fullwidth Asterisk en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\uFF0A' or String.fromCodePoint(65290) |
| Python | '\N{FULLWIDTH ASTERISK}' or chr(65290) |
| Rust | '\u{FF0A}' |
| C / C++ | UTF-8 source or wchar_t with U+FF0A |
| Go | string(rune(0xFF0A)) |
| Ruby | "\u{FF0A}" |
| Código CSS |
\FF0A |
| Código hexadecimal | 0xFF0A |
| Código HTML | * |
| LaTeX | \text{FULLWIDTHASTERISK} |
| Símbolo | * |
| Codificación URL (porcentaje UTF-8) | %EF%BC%8A |
| Nombre oral / lector de pantalla | Fullwidth Asterisk |