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