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