| Nombre del símbolo | Inverse Bullet |
| Versión Unicode | 1.1 |
| Unicode | U+25D8 |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \25D8 |
| Código hexadecimal | 0x25D8 |
| Código HTML | ◘ |
| LaTeX | \text{INVERSEBULLET} |
| Símbolo | ◘ |
| Codificación URL (porcentaje UTF-8) | %E2%97%98 |
| Nombre oral / lector de pantalla | Inverse Bullet |
| UTF-8 | E2 97 98 |
| UTF-16 | 25D8 |
| UTF-32 | 000025D8 |
1\documentclass{article}2\usepackage{pifont}3\text{INVERSEBULLET}4\end{document}Puedes escribir el símbolo inverse bullet en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 9688 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "inverse bullet", or use Unicode Hex Input with 25D8.
Ctrl + Shift + U, type 25d8, 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 geometric symbol support.
1span.inverse-bullet::before { content: "\25D8"; }1<span>◘</span>La representación del símbolo Inverse Bullet en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u25D8' or String.fromCodePoint(9688) |
| Python | '\N{INVERSE BULLET}' or chr(9688) |
| Rust | '\u{25D8}' |
| C / C++ | UTF-8 source or wchar_t with U+25D8 |
| Go | string(rune(0x25D8)) |
| Ruby | "\u{25D8}" |