| Symbol Name | Square Rad |
| Unicode Version | 1.1 |
| Unicode | U+33AD |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \33AD |
| Hex Code | 0x33AD |
| HTML Code | ㎭ |
| LaTeX | \text{RAD} |
| Symbol | ㎭ |
| URL encode (UTF-8 percent) | %E3%8E%AD |
| Spoken / screen reader name | 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}You can type the square rad symbol on most modern devices with the help of following methods:
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>Square Rad symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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" |