| 記号名 | Right White Square Bracket |
| Unicodeバージョン | 1.1 |
| Unicode | U+301B |
| Unicodeブロック | |
| 一般カテゴリ | Close Punctuation (Pe) |
| CSSコード | \301B |
| 16進コード | 0x301B |
| HTMLコード | 〛 |
| LaTeX | \text{RIGHTWHITESQUAREBRACKET} |
| 記号 | 〛 |
| URLエンコード(UTF-8パーセント) | %E3%80%9B |
| 読み上げ名 / スクリーンリーダー | Right White Square Bracket |
| UTF-8 | E3 80 9B |
| UTF-16 | 301B |
| UTF-32 | 0000301B |
1\documentclass{article}2\usepackage{pifont}3\text{RIGHTWHITESQUAREBRACKET}4\end{document}以下の方法でほとんどの最新デバイスでright white square bracket記号を入力できます:
Alt + 12315 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "right white square bracket", or use Unicode Hex Input with 301B.
Ctrl + Shift + U, type 301b, 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.right-white-square-bracket::before { content: "\301B"; }1<span>〛</span>各プログラミング言語におけるRight White Square Bracket記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u301B' or String.fromCodePoint(12315) |
| Python | '\N{RIGHT WHITE SQUARE BRACKET}' or chr(12315) |
| Rust | '\u{301B}' |
| C / C++ | UTF-8 source or wchar_t with U+301B |
| Go | string(rune(0x301B)) |
| Ruby | "\u{301B}" |