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:
thanks in advance
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;
}