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