| 記号名 | Single Left-pointing Angle Quotation Mark |
| Unicodeバージョン | 1.1 |
| Unicode | U+2039 |
| Unicodeブロック | |
| 一般カテゴリ | Initial Quote Punctuation (Pi) |
| CSSコード |
| UTF-8 | E2 80 B9 |
| UTF-16 | 2039 |
| UTF-32 | 00002039 |
1\documentclass{article}2\usepackage{pifont}3\guilsinglleft 4\end{document}以下の方法でほとんどの最新デバイスでsingle left-pointing angle quotation mark記号を入力できます:
Alt + 8249 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "single left-pointing angle quotation mark", or use Unicode Hex Input with 2039.
Ctrl + Shift + U, type 2039, 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 bracket and quote support.
1span.single-left-pointing-angle-quotation-mark::before { content: "\2039"; }1<span>‹</span>各プログラミング言語におけるSingle Left-pointing Angle Quotation Mark記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u2039' or String.fromCodePoint(8249) |
| Python | '\N{SINGLE LEFT-POINTING ANGLE QUOTATION MARK}' or chr(8249) |
| Rust | '\u{2039}' |
| C / C++ | UTF-8 source or wchar_t with U+2039 |
| Go | string(rune(0x2039)) |
| Ruby | "\u{2039}" |
\2039 |
| 16進コード | 0x2039 |
| HTMLコード | ‹ |
| LaTeX | \guilsinglleft |
| 記号 | ‹ |
| URLエンコード(UTF-8パーセント) | %E2%80%B9 |
| 読み上げ名 / スクリーンリーダー | Single Left-pointing Angle Quotation Mark |