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