| 記号名 | Circled Postal Mark |
| Unicodeバージョン | 1.1 |
| Unicode | U+3036 |
| Unicodeブロック | |
| 一般カテゴリ | Other Symbol (So) |
| CSSコード | \3036 |
| 16進コード | 0x3036 |
| HTMLコード | 〶 |
| LaTeX | \text{CIRCLEDPOSTALMARK} |
| 記号 | 〶 |
| URLエンコード(UTF-8パーセント) | %E3%80%B6 |
| 読み上げ名 / スクリーンリーダー | Circled Postal Mark |
| UTF-8 | E3 80 B6 |
| UTF-16 | 3036 |
| UTF-32 | 00003036 |
1\documentclass{article}2\usepackage{pifont}3\text{CIRCLEDPOSTALMARK}4\end{document}以下の方法でほとんどの最新デバイスでcircled postal mark記号を入力できます:
Alt + 12342 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "circled postal mark", or use Unicode Hex Input with 3036.
Ctrl + Shift + U, type 3036, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the emoji keyboard.
Paste from this page or use a keyboard with ornament and fleuron support.
1span.circled-postal-mark::before { content: "\3036"; }1<span>〶</span>各プログラミング言語におけるCircled Postal Mark記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u3036' or String.fromCodePoint(12342) |
| Python | '\N{CIRCLED POSTAL MARK}' or chr(12342) |
| Rust | '\u{3036}' |
| C / C++ | UTF-8 source or wchar_t with U+3036 |
| Go | string(rune(0x3036)) |
| Ruby | "\u{3036}" |