| Symbol Name | Circled Postal Mark |
| Unicode Version | 1.1 |
| Unicode | U+3036 |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \3036 |
| Hex Code | 0x3036 |
| HTML Code | 〶 |
| LaTeX | \text{CIRCLEDPOSTALMARK} |
| Symbol | 〶 |
| URL encode (UTF-8 percent) | %E3%80%B6 |
| Spoken / screen reader name | 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}You can type the circled postal mark symbol on most modern devices with the help of following methods:
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 symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |