Search code examples
htmlcssunicodefonts

Is there a Unicode character for the share icon?


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

thanks in advance


Solution

  • 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;
    }