微信公众平台开发(57)Emoji表情符号

微信公众平台开发 微信公众平台开发模式 企业微信公众平台 Emoji表情符号 
作者:方倍工作室 
地址:http://www.cnblogs.com/txw1958/p/crack-golden-eggs.html

一 什么是Emoji  

emoji就是表情符号;词义来自日语(えもじ,e-moji,moji在日语中的含义是字符)
表情符号现已普遍应用于手机短信和网络聊天软件。
emoji表情符号,在外国的手机短信里面已经是很流行使用的一种表情。

在国内的微信和微信中也被采用。

Emoji 全编码表:
http://punchdrunker.github.com/iOSEmoji/table_html/flower.html

http://code.iamcal.com/php/emoji/

<?php
    include('emoji.php');


    # browser sniffing tells us that a docomo phone
    # submitted this text

    $clean_text = emoji_docomo_to_unified($_POST[message]);


    ...


    # now we want to show it in a desktop browser

    $html = emoji_unified_to_html($clean_text);
?>
原文地址:https://www.cnblogs.com/lanzhi/p/6467629.html