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