国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術(shù)文章
文章詳情頁

emoji表情與unicode編碼互轉(zhuǎn)的實(shí)現(xiàn)(JS,JAVA,C#)

瀏覽:16日期:2022-08-18 17:47:37

前幾天剛好有需求要把emoji對應(yīng)的Unicode編碼轉(zhuǎn)換成文字,比如1f601對應(yīng)的這個(gè)笑臉😁,但沒有找到C#的把1f601轉(zhuǎn)換成文字的方法,用Encoding.Unicode怎么轉(zhuǎn)換都不對,最后直接復(fù)制emoji字符,Visual Studio里面竟然直接顯示出來了,那就直接用字符吧,都不用轉(zhuǎn)換了,然后不了了之了。

今天搞Markdown編輯器,由于前面GFM的原因,又對編碼進(jìn)行測試,沒查到什么靠譜資料,到時(shí)找到很多emoji和Unicode對照表,https://apps.timwhitlock.info/emoji/tables/unicode拿一個(gè)笑臉https://apps.timwhitlock.info/unicode/inspect/hex/1F601開刀~

1.表情字符轉(zhuǎn)編碼

【C#】

Encoding.UTF32.GetBytes('😁') -> ['1', 'f6', '1', '0']

【js】

'😁'.codePointAt(0).toString(16) -> 1f601

【java】

byte[] bytes = '😀'.getBytes('utf-32'); System.out.println(getBytesCode(bytes)); private static String getBytesCode(byte[] bytes) { String code = ''; for (byte b : bytes) { code += 'x' + Integer.toHexString(b & 0xff); } return code; }

UTF-32結(jié)果一致

【C#】

Encoding.UTF8.GetBytes('😁') -> ['f0', '9f', '98', '81']

【js】

encodeURIComponent('😁') -> %F0%9F%98%81

UTF-8結(jié)果一致

2.編碼轉(zhuǎn)表情字符

【js】

String.fromCodePoint(’0x1f601’) utf-32

【java】

String emojiName = '1f601'; //其實(shí)4個(gè)字節(jié) int emojiCode = Integer.valueOf(emojiName, 16); byte[] emojiBytes = int2bytes(emojiCode); String emojiChar = new String(emojiBytes, 'utf-32'); System.out.println(emojiChar); public static byte[] int2bytes(int num){ byte[] result = new byte[4]; result[0] = (byte)((num >>> 24) & 0xff);//說明一 result[1] = (byte)((num >>> 16)& 0xff ); result[2] = (byte)((num >>> 8) & 0xff ); result[3] = (byte)((num >>> 0) & 0xff ); return result; }c# 漢字和Unicode編碼互相轉(zhuǎn)換實(shí)例

/// <summary>/// <summary>/// 字符串轉(zhuǎn)Unicode/// </summary>/// <param name='source'>源字符串</param>/// <returns>Unicode編碼后的字符串</returns>public static string String2Unicode(string source){ byte[] bytes = Encoding.Unicode.GetBytes(source); StringBuilder stringBuilder = new StringBuilder(); for (int i = 0; i < bytes.Length; i += 2) { stringBuilder.AppendFormat('u{0}{1}', bytes[i + 1].ToString('x').PadLeft(2, ’0’), bytes[i].ToString('x').PadLeft(2, ’0’)); } return stringBuilder.ToString();} /// <summary>/// Unicode轉(zhuǎn)字符串/// </summary>/// <param name='source'>經(jīng)過Unicode編碼的字符串</param>/// <returns>正常字符串</returns>public static string Unicode2String(string source){ return new Regex(@'u([0-9A-F]{4})', RegexOptions.IgnoreCase | RegexOptions.Compiled).Replace( source, x => string.Empty + Convert.ToChar(Convert.ToUInt16(x.Result('$1'), 16)));}參考地址:

https://www.jianshu.com/p/8a416537deb3

https://blog.csdn.net/a19881029/article/details/13511729

https://apps.timwhitlock.info/emoji/tables/unicode

到此這篇關(guān)于emoji表情與unicode編碼互轉(zhuǎn)的實(shí)現(xiàn)(JS,JAVA,C#)的文章就介紹到這了,更多相關(guān)emoji表情與unicode編碼互轉(zhuǎn)內(nèi)容請搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!

標(biāo)簽: Java
相關(guān)文章:
主站蜘蛛池模板: 云南省| 于都县| 靖西县| 南平市| 竹北市| 新宾| 武功县| 吉首市| 长岛县| 仲巴县| 平江县| 镇坪县| 绥棱县| 区。| 祁门县| 通海县| 长治县| 简阳市| 福建省| 阜新市| 义马市| 平邑县| 宁陵县| 秦皇岛市| 东辽县| 镶黄旗| 澎湖县| 丰台区| 德格县| 余江县| 香格里拉县| 本溪市| 壤塘县| 陈巴尔虎旗| 永寿县| 潮安县| 额敏县| 宁城县| 浦城县| 中超| 精河县|