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