| 記号名 | Close Up |
| Unicodeバージョン | 3.2 |
| Unicode | U+2050 |
| Unicodeブロック | |
| 一般カテゴリ | Other Punctuation (Po) |
| CSSコード | \2050 |
| 16進コード | 0x2050 |
| HTMLコード | ⁐ |
| LaTeX | \text{CLOSEUP} |
| 記号 | ⁐ |
| URLエンコード(UTF-8パーセント) | %E2%81%90 |
| 読み上げ名 / スクリーンリーダー | Close Up |
| UTF-8 | E2 81 90 |
| UTF-16 | 2050 |
| UTF-32 | 00002050 |
1\documentclass{article}2\usepackage{pifont}3\text{CLOSEUP}4\end{document}以下の方法でほとんどの最新デバイスでclose up記号を入力できます:
Alt + 8272 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "close up", or use Unicode Hex Input with 2050.
Ctrl + Shift + U, type 2050, 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 punctuation support.
1span.close-up::before { content: "\2050"; }1<span>⁐</span>各プログラミング言語におけるClose Up記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u2050' or String.fromCodePoint(8272) |
| Python | '\N{CLOSE UP}' or chr(8272) |
| Rust | '\u{2050}' |
| C / C++ | UTF-8 source or wchar_t with U+2050 |
| Go | string(rune(0x2050)) |
| Ruby | "\u{2050}" |