最新 最热

[golang][history]The Go Annotated Specification Go注释规范328df636c5f3e0875bc71a7eadf5a4a5084e0b13

This document supersedes all previous Go spec attempts. The intent isto make this a reference for syntax and semantics. It is annotatedwith additional inform...

2021-01-29
1

[golang][history]The Go Annotated Specification Go注释规范18c5b488a3b2e218c0e0cf2a7d4820d9da93a554

This document supersedes all previous Go spec attempts. The intent isto make this a reference for syntax and semantics. It is annotatedwith additional inform...

2021-01-29
1

1 分钟带你认识从 "�" 到 "锟斤拷"

在前不久石头哥的这篇文章中 —— 你可能也会掉进这个简单的 String 的坑,讲述了因字符编码问题而连续踩坑的经历,文中有一个神奇的字符 “�”。

2021-01-28
0

Flutter 文本解读 8 | Icon 与 RichText 的渊源

.markdown-body{word-break:break-word;line-height:1.75;font-weight:400;font-size:15px;overflow-x:hidden;color:#333}.markdown-body h1,.markdown-body h2,.markdown-...

2021-01-27
0

Erlang & Unicode

Erlang的string实际上就是整数项组成的list,注意string的编解码使用是使用ISO-latin-1字符集,即:每8字节当成一个整体进行解读;这个字符集是Unicode的子集.Erlang list编解码很容易扩展到整个unicode编码:由于编码是...

2021-01-26
1

ChicagoBoss里直接在Controller里面使用中文

原因在于erlang的源文件都是只支持latin字符集的,只要是*erl的文件,都是这样,所以出现unicode字符的话,都会类似的错误。所有的unicode字符都应该由变量传递或者进行encode...

2021-01-26
1

Erlang解决中文问题

1、外部文件使用utf8保存 2、erlang代码使用utf8保存 3、使用xmerl_ucs:from_utf8(Data)转换成unicode编码 4、使用io:format(“~ts~n”, [Data])在shell中打印

2021-01-26
1

Python ord() 函数

ord() 函数是 chr() 函数(对于8位的ASCII字符串)或 unichr() 函数(对于Unicode对象)的配对函数,它以一个字符(长度为1的字符串)作为参数,返回对应的 ASCII 数值,或者 Unicode 数值,如果所给的 Unicode 字符超出了你的 Python 定...

2021-01-25
0

醒醒!Python已经支持中文变量名啦!

最近,我在翻阅两本比较新的 Python 书籍时,发现它们都犯了一个严重的低级错误!

2021-01-22
0

Java---IO加强(3)-IO流的操作规律

源:InputStream Reader 一定是被读取的。 目的:OutputStream Writer 一定是被写入的。

2021-01-21
0