I ve searched many times in google ,stackoverflow,html chars sites but I did not find what I need please help me about this:
I need this icon, representing a share action, as html unicode sequence:
please help
thanks in advance
To insert a Unicode character, type the character code, press ALT, and then press X. For example, to type a dollar symbol ($), type 0024, press ALT, and then press X. For more Unicode character codes, see Unicode character code charts by script.
Unicode covers all the characters for all the writing systems of the world, modern and ancient. It also includes technical symbols, punctuations, and many other characters used in writing text.
The Open Share Icon (or Shareaholic icon) is designed to help users easily identify shareable content.
Unicode is a character set. It is a superset of all the other character sets. In the version 6.0, Unicode has 1,114,112 code points (the last code point is U+10FFFF).
Short answer: no.
Long answer: https://en.wikipedia.org/wiki/List_of_Unicode_characters
As a minor aside / workaround for a bit of fun:
DEMO: http://jsfiddle.net/8rzgv/
<span class="share"><</span>
.share {
font-weight: bold;
position: relative;
}
.share:before {
content: ".";
font-size: 2.2em;
position: absolute;
bottom: -2.5px;
left: -4px;
}
.share:after {
content: ":";
font-size: 2em;
position: absolute;
bottom: -6px;
right: -7px;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With