| Nombre del símbolo | Doubled Female Sign |
| Versión Unicode | 4.1 |
| Unicode | U+26A2 |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \26A2 |
| Código hexadecimal | 0x26A2 |
| Código HTML | ⚢ |
| LaTeX | \text{DOUBLEDFEMALESIGN} |
| Símbolo | ⚢ |
| Codificación URL (porcentaje UTF-8) | %E2%9A%A2 |
| Nombre oral / lector de pantalla | Doubled Female Sign |
| UTF-8 | E2 9A A2 |
| UTF-16 | 26A2 |
| UTF-32 | 000026A2 |
1\documentclass{article}2\usepackage{pifont}3\text{DOUBLEDFEMALESIGN}4\end{document}Puedes escribir el símbolo doubled female sign en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 9890 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "doubled female sign", or use Unicode Hex Input with 26A2.
Ctrl + Shift + U, type 26a2, 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.doubled-female-sign::before { content: "\26A2"; }1<span>⚢</span>La representación del símbolo Doubled Female Sign en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u26A2' or String.fromCodePoint(9890) |
| Python | '\N{DOUBLED FEMALE SIGN}' or chr(9890) |
| Rust | '\u{26A2}' |
| C / C++ | UTF-8 source or wchar_t with U+26A2 |
| Go | string(rune(0x26A2)) |
| Ruby | "\u{26A2}" |