| 記号名 | Left Three Eighths Block |
| Unicodeバージョン | 1.1 |
| Unicode | U+258D |
| Unicodeブロック | |
| 一般カテゴリ | Other Symbol (So) |
| CSSコード | \258D |
| 16進コード | 0x258D |
| HTMLコード | ▍ |
| LaTeX | \text{LEFTTHREEEIGHTHSBLOCK} |
| 記号 | ▍ |
| URLエンコード(UTF-8パーセント) | %E2%96%8D |
| 読み上げ名 / スクリーンリーダー | Left Three Eighths Block |
| UTF-8 | E2 96 8D |
| UTF-16 | 258D |
| UTF-32 | 0000258D |
1\documentclass{article}2\usepackage{pifont}3\text{LEFTTHREEEIGHTHSBLOCK}4\end{document}以下の方法でほとんどの最新デバイスでleft three eighths block記号を入力できます:
Alt + 9613 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "left three eighths block", or use Unicode Hex Input with 258D.
Ctrl + Shift + U, type 258d, 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 block element support.
1span.left-three-eighths-block::before { content: "\258D"; }1<span>▍</span>各プログラミング言語におけるLeft Three Eighths Block記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u258D' or String.fromCodePoint(9613) |
| Python | '\N{LEFT THREE EIGHTHS BLOCK}' or chr(9613) |
| Rust | '\u{258D}' |
| C / C++ | UTF-8 source or wchar_t with U+258D |
| Go | string(rune(0x258D)) |
| Ruby | "\u{258D}" |