| Nombre del símbolo | Square Rad |
| Versión Unicode | 1.1 |
| Unicode | U+33AD |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \33AD |
| Código hexadecimal | 0x33AD |
| Código HTML | ㎭ |
| LaTeX | \text{RAD} |
| Símbolo | ㎭ |
| Codificación URL (porcentaje UTF-8) | %E3%8E%AD |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo square rad en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Square Rad en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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" |