| Nombre del símbolo | Asterisk Operator |
| Versión Unicode | 1.1 |
| Unicode | U+2217 |
| Bloque Unicode | |
| Categoría general | Math Symbol (Sm) |
| UTF-8 | E2 88 97 |
| UTF-16 | 2217 |
| UTF-32 | 00002217 |
1\documentclass{article}2\usepackage{pifont}3\ast4\end{document}Puedes escribir el símbolo asterisk operator en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 8727 on the numeric keypad, or insert via Character Map.
Edit → Emoji & Symbols, search "asterisk operator", or use Unicode Hex Input.
Ctrl + Shift + U, type 2217, then Enter (layout-dependent).
Paste from this page or use a math keyboard.
Paste from this page or use extended symbol panels.
1span.ast::before { content: "\2217"; }1<span>∗</span>La representación del símbolo Asterisk Operator en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u2217' or String.fromCodePoint(0x2217) |
| Python | '\N{ASTERISK OPERATOR}' or chr(8727) |
| Rust | '\u{2217}' |
| C / C++ | UTF-8 source or wchar_t with U+2217 |
| Go | string(rune(0x2217)) |
| Ruby | "\u2217" |
| Código CSS |
\2217 |
| Código hexadecimal | 0x2217 |
| Código HTML | ∗ |
| LaTeX | \ast |
| Símbolo | ∗ |
| Codificación URL (porcentaje UTF-8) | %E2%88%97 |
| Nombre oral / lector de pantalla | Asterisk Operator |