| 記号名 | Square Rad Over S |
| Unicodeバージョン | 1.1 |
| Unicode | U+33AE |
| Unicodeブロック | |
| 一般カテゴリ | Other Symbol (So) |
| CSSコード | \33AE |
| 16進コード | 0x33AE |
| HTMLコード | ㎮ |
| LaTeX | \text{RADOVERS} |
| 記号 | ㎮ |
| URLエンコード(UTF-8パーセント) | %E3%8E%AE |
| 読み上げ名 / スクリーンリーダー | Square Rad Over S |
| UTF-8 | E3 8E AE |
| UTF-16 | 33AE |
| UTF-32 | 000033AE |
1\documentclass{article}2\usepackage{pifont}3\text{RADOVERS}4\end{document}以下の方法でほとんどの最新デバイスでsquare rad over s記号を入力できます:
Alt + 13230 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "square rad over s", or use Unicode Hex Input with 33AE.
Ctrl + Shift + U, type 33ae, 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-over-s::before { content: "\33AE"; }1<span>㎮</span>各プログラミング言語におけるSquare Rad Over S記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u33AE' or String.fromCodePoint(0x33AE) |
| Python | '\N{SQUARE RAD OVER S}' or chr(13230) |
| Rust | '\u{33AE}' |
| C / C++ | UTF-8 source or wchar_t with U+33AE |
| Go | string(rune(0x33AE)) |
| Ruby | "\u33AE" |