| Nombre del símbolo | Divorce Symbol |
| Versión Unicode | 4.1 |
| Unicode | U+26AE |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \26AE |
| Código hexadecimal | 0x26AE |
| Código HTML | ⚮ |
| LaTeX | \text{DIVORCESYMBOL} |
| Símbolo | ⚮ |
| Codificación URL (porcentaje UTF-8) | %E2%9A%AE |
| Nombre oral / lector de pantalla | Divorce Symbol |
| UTF-8 | E2 9A AE |
| UTF-16 | 26AE |
| UTF-32 | 000026AE |
1\documentclass{article}2\usepackage{pifont}3\text{DIVORCESYMBOL}4\end{document}Puedes escribir el símbolo divorce en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 9902 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "divorce symbol", or use Unicode Hex Input with 26AE.
Ctrl + Shift + U, type 26ae, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the emoji keyboard.
Paste from this page or use a keyboard with gender symbol support.
1span.divorce-symbol::before { content: "\26AE"; }1<span>⚮</span>La representación del símbolo Divorce en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u26AE' or String.fromCodePoint(9902) |
| Python | '\N{DIVORCE SYMBOL}' or chr(9902) |
| Rust | '\u{26AE}' |
| C / C++ | UTF-8 source or wchar_t with U+26AE |
| Go | string(rune(0x26AE)) |
| Ruby | "\u{26AE}" |