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