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