17

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:

enter image description here

please help

thanks in advance

John
  • 10,154
  • 9
  • 79
  • 143
Ersin Gülbahar
  • 6,344
  • 14
  • 54
  • 105
  • 3
    https://en.wikipedia.org/wiki/List_of_Unicode_characters – gvee Apr 29 '14 at 07:45
  • Question about the existence of characters are off-topic here. Besides, if you need something *for HTML*, then you are probably asking a wrong question. The existence of a character would not help you if e.g. it is so new that few if any fonts contain it. – Jukka K. Korpela Apr 29 '14 at 07:59
  • I do not understand why this question is wrong? – Ersin Gülbahar Apr 29 '14 at 08:05
  • I suggest you reopen. This type of symbol might very well appear in a future version of Unicode. Furthermore, the braille suggestion in one of the answers was a very good workaround. Besides, the principle banning asking for suggestions is stupid and does not add value. – d-b Jan 16 '16 at 13:48
  • What about this? ⚟ –  Jan 29 '20 at 16:50
  • Note, this icon [is trademarked](https://en.wikipedia.org/wiki/Share_icon) and had some legal issues. That's probably the reason why it was not added to unicode. – Klesun Apr 27 '21 at 12:51

3 Answers3

15

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">&lt;</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;
}
gvee
  • 14,906
  • 28
  • 45
8

Since that share symbol doesn't exist on unicode range u0000-uFFFF, you may use instead an iconic font and import that symbol. E.g., if you look at http://fontello.com/ and you search for "share" you will find a similar symbol under Entypo font

enter image description here

(with Entypo the unicode sequence is \uE800). These fonts are also in SVG format and the size/color/tickness of the symbols can be managed by CSS properties

Fabrizio Calderan loves trees
  • 109,094
  • 24
  • 154
  • 160
6

As far as I know it doesn't exists, and even if so, there is a very hight chance (like 99%) that the browser will not display it correctly. Try to use the brail coding, in particular this one is very similar to your needs: https://en.wikipedia.org/wiki/%E2%A0%AA

MarcinKwiatkowski
  • 247
  • 1
  • 3
  • 15