| Symbol Name | Doubled Male Sign |
| Unicode Version | 4.1 |
| Unicode | U+26A3 |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \26A3 |
| Hex Code | 0x26A3 |
| HTML Code | ⚣ |
| LaTeX | \text{DOUBLEDMALESIGN} |
| Symbol | ⚣ |
| URL encode (UTF-8 percent) | %E2%9A%A3 |
| Spoken / screen reader name | Doubled Male Sign |
| UTF-8 | E2 9A A3 |
| UTF-16 | 26A3 |
| UTF-32 | 000026A3 |
1\documentclass{article}2\usepackage{pifont}3\text{DOUBLEDMALESIGN}4\end{document}You can type the doubled male sign symbol on most modern devices with the help of following methods:
Alt + 9891 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "doubled male sign", or use Unicode Hex Input with 26A3.
Ctrl + Shift + U, type 26a3, 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-male-sign::before { content: "\26A3"; }1<span>⚣</span>Doubled Male Sign symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u26A3' or String.fromCodePoint(9891) |
| Python | '\N{DOUBLED MALE SIGN}' or chr(9891) |
| Rust | '\u{26A3}' |
| C / C++ | UTF-8 source or wchar_t with U+26A3 |
| Go | string(rune(0x26A3)) |
| Ruby | "\u{26A3}" |