技术的乐趣在于分享,欢迎多多交流,多多沟通。
全部博文(877)
发布时间:2014-08-28 14:17:10
http://blog.csdn.net/fmddlmyy/article/details/1510189浅谈文字编码和Unicode(上)我曾经写过一篇《谈谈Unicode编码,简要解释UCS、UTF、BMP、BOM等名词》(以下简称《谈谈Unicode编码》),在网上流传较广,我也收到不少朋友的反馈。本文探讨《谈谈Unicode编码》中未介绍或介绍较少的代码页、Surrogates等问题,.........【阅读全文】
发布时间:2014-08-28 10:09:29
Joel on SoftwareThe Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets (No Excuses!)by Joel SpolskyWednesday, October 08, 2003Ever wonder about that mysterious Content-Type tag? You know, the one you're supposed to put in HTM.........【阅读全文】
发布时间:2014-08-27 17:30:11
http://blog.wuliaoa.com/?p=556在cnbeta上看到这样一篇文章 [评论]GB18030 – 想说爱你不容易,看完此文再次见识到CB喷子们的智商。这样一篇没有水准的文章,我觉得有必要再写点东西留给有需要的人,虽然之前已经写过一点相关的东西了。注:本文名词较多,需要对字符编码有一定了解才可以看明白,本文不是科普.........【阅读全文】
发布时间:2014-08-27 13:36:01
http://yyuan163.blog.163.com/blog/static/131831748200910611025499/int UnicodeToUtf8(LPUNC src, BYTE* putf8){int len=0;while(*src){ if (*src < 0x80) //one byte { putf8[len++] = *src; } else if (*src < 0x800) //two byte&nbs.........【阅读全文】