Is there any such symbol that is similar in Unicode?
After all, I was able to find ☰ as a symbol, just wondering if there is anything similar to a grid of icons.
Is there any such symbol that is similar in Unicode?
After all, I was able to find ☰ as a symbol, just wondering if there is anything similar to a grid of icons.
No, there is not. You can check yourself the "Symbol, other" (So) list, and possibly the "Symbol, math (Sm) list" (and also other lists, if you deem it worthwhile).
The closest approximation I could find is U+25A6, i.e., ▦ (if your browser is able to display that)
A couple of options not already mentioned are:
No, there is not. You can check yourself the "Symbol, other" (So) list, and possibly the "Symbol, math (Sm) list" (and also other lists, if you deem it worthwhile).
The closest approximation I could find is U+25A6, i.e., ▦ (if your browser is able to display that)
Not exactly a grid of icons but character U+25A6, called "Square with Orthogonal Crosshatch Fill", is usually rendered as a 4x4 grid.
There are also some Braille patterns you could use. The only problem being they only come in two columns. "Braille Pattern Dots-12345678" is rendered as two columns of four dots.
You can put one after the next and modify the kerning. In CSS it would be letter-spacing: -.2em;
for it to be precise. It would look like this:
<span style="letter-spacing: -.2em;">⣿⣿</span>
⣿⣿
for me. Are you missing the metacharset tag? –
Thistle "Tetragram For Duties" 𝌠 https://www.compart.com/en/unicode/U+1d320
"Tetragram For Difficulties" 𝍔 https://www.compart.com/en/unicode/U+1d354
"Tetragram For Fostering" 𝍖 https://www.compart.com/en/unicode/U+1d356
There is no such symbol in unicode.
You can try compose this symbol from unicode square symbols:
<div class="grid">
■■■<br />
■■■<br />
■■■
</div>
and then adjust font params, so everything fits in the way you like it:
.grid {
font-size: 7pt;
letter-spacing: 2px;
line-height: 75%;
}
You can see this example working at http://jsfiddle.net/8ABxV/1/
I think that better idea however, is to use "th" symbol from font-awesome framework http://fortawesome.github.io/Font-Awesome/icon/th/
You can also use this sharp symbol
𐄹
'AEGEAN WEIGHT SECOND SUBUNIT' (U+10139)
(fileformat.info/info/unicode/char/10139/index.htm) –
Cockchafer Is there any such symbol that is similar in Unicode?
I wonder why nobody actually answered the question correctly for 10 years.
Yes, there is unicode symbol:
𓃑
nine dots | EGYPTIAN HIEROGLYPH D067H
Codepoint U+130D1
https://unicode-explorer.com/c/130D1
I am using the following inline hack:
<span style="letter-spacing: -.6em">⋮⋮⋮</span>
(copy this without newlines)
It is three times the "vertical ellipsis" unicode character (⋮) with some spacing adjustment.
In VS Code using MarkDown, this works
<span style="letter-spacing: -em"><meta charset="utf-8">⋮⋮⋮</span>
Add a leading and trailing
like:
Click on the 9 dot grid <span style="letter-spacing: -em"><meta charset="utf-8">⋮⋮⋮</span> that is located at the top left.
...And you should get:
Click on the 9 dot grid ⋮⋮⋮ icon that is located at the top left.
© 2022 - 2025 — McMap. All rights reserved.