ASCII-8BIT 怎么转换为 GBK?
String#encode
ascii-8bit 是伪编码
ascii-8bit
gbk
force_encoding('gbk')
utf-8
encode('gbk', 'utf-8')
请教下 怎么 把中文 转为 unicode
#2 楼 @lonre 请教下 怎么 把中文 转为 unicode
ASCII 需要转换成 GBK 吗?GBK 的字符编码不是包括了 ASCII 编码吗?
#5 楼 @DouO 请教下 怎么 把中文 转为 unicode
N 年前研究过,是用查表的方式来解决的。
从 GBK 到 Unicode 的中文字符映射
ruby 应该可以直接按 @lonre 的方法来转码吧。