What Unicode character can I use do display this character?
I currently need it to write a .doc document, but I would like to know if a Unicode character is available, in order to print it out in an app, or if some font has this glyph in it.
What Unicode character can I use do display this character?
I currently need it to write a .doc document, but I would like to know if a Unicode character is available, in order to print it out in an app, or if some font has this glyph in it.
These glyphs:
are the best matches. If used with little font sizes, they can do the job.
An ugly alternative would be using three glyphs, maybe mixing different font sizes and faces: ←↕→
UPDATE: A (great) alternative exists for HTML. The trick is placing two characters with absolute positioning, one over the other:
UPDATE2: added another variant of the "rotated" four-arrows, using triangle-headed arrows
.container {
width: 100px;
height: 100px;
position: relative;
}
.first,
.second,
.third,
.fourth {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
}
.second {
z-index: 10;
}
.third {
z-index: 20;
}
.fourth {
z-index: 30;
}
body {
font-family: Monospace; font-size: 50px;
}
<div class="container">
<div class="first">↔</div>
<div class="second">↕</div>
</div>
<div class="container">
<div class="first">⤨</div>
<div class="second">⤪</div>
</div>
<div class="container">
<div class="first">⭦</div>
<div class="second">⭧</div>
<div class="third">⭨</div>
<div class="fourth">⭩</div>
</div>
transform: rotate(45deg)
–
Confetti To get <span style="position:relative; font-size:2rem">↕<span style="position:absolute; left:-.25em; top:-.025em;">↔</span></span> <code><a href="https://www.compart.com/en/unicode/U+2195">use ↕</a> <a href="https://www.compart.com/en/unicode/U+2194">and ↔</a></code>
© 2022 - 2024 — McMap. All rights reserved.