这个图标是否有任何unicode(共享图标)?

时间:2014-04-29 07:43:54

标签: html css unicode fonts

我在google,stackoverflow,html chars网站上搜索了很多次,但我找不到我需要的东西,请帮帮我:

我需要这个代表共享动作的图标,作为html unicode序列:

enter image description here

请帮助

提前致谢

3 个答案:

答案 0 :(得分:10)

简答:不。

答案很长:https://en.wikipedia.org/wiki/List_of_Unicode_characters


作为一个小小的放弃/解决方法,以获得一些乐趣:

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

答案 1 :(得分:5)

据我所知,它并不存在,即使如此,浏览器也无法正确显示它的机率很高(如99%)。尝试使用brail编码,特别是这与您的需求非常相似:https://en.wikipedia.org/wiki/%E2%A0%AA

答案 2 :(得分:4)

由于unicode范围u0000-uFFFF上不存在该共享符号,因此您可以使用标志性字体并导入该符号。例如,如果您查看http://fontello.com/并搜索“分享”,您会在Entypo字体下找到类似的符号

enter image description here

(使用Entypo,unicode序列为\uE800)。这些字体也是SVG格式,符号的大小/颜色/标记可以通过CSS属性管理