Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a Unicode character for the share icon? [closed]

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

like image 749
Ersin Gülbahar Avatar asked Apr 29 '14 07:04

Ersin Gülbahar


People also ask

How do I find Unicode characters?

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.

What characters are Unicode?

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.

What is the share icon called?

The Open Share Icon (or Shareaholic icon) is designed to help users easily identify shareable content.

What is the last Unicode?

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).


1 Answers

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;
}
like image 198
gvee Avatar answered Sep 16 '22 14:09

gvee