| Nome del simbolo | Square Rad |
| Versione Unicode | 1.1 |
| Unicode | U+33AD |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \33AD |
| Codice esadecimale | 0x33AD |
| Codice HTML | ㎭ |
| LaTeX | \text{RAD} |
| Simbolo | ㎭ |
| Codifica URL (percentuale UTF-8) | %E3%8E%AD |
| Nome parlato / screen reader | Square Rad |
| UTF-8 | E3 8E AD |
| UTF-16 | 33AD |
| UTF-32 | 000033AD |
1\documentclass{article}2\usepackage{pifont}3\text{RAD}4\end{document}Puoi digitare il simbolo square rad sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 13229 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "square rad", or use Unicode Hex Input with 33AD.
Ctrl + Shift + U, type 33ad, 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 unit symbol support.
1span.square-rad::before { content: "\33AD"; }1<span>㎭</span>La rappresentazione del simbolo Square Rad nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u33AD' or String.fromCodePoint(0x33AD) |
| Python | '\N{SQUARE RAD}' or chr(13229) |
| Rust | '\u{33AD}' |
| C / C++ | UTF-8 source or wchar_t with U+33AD |
| Go | string(rune(0x33AD)) |
| Ruby | "\u33AD" |