latin1 最高级常量

Latin1Codec const latin1

默认实现的 Latin1Codec 实例。

此实例提供了对最常见的 ISO Latin 1 用例的方便访问。

示例

var encoded = latin1.encode("blåbærgrød");
var decoded = latin1.decode([0x62, 0x6c, 0xe5, 0x62, 0xe6,
                             0x72, 0x67, 0x72, 0xf8, 0x64]);

实现

const Latin1Codec latin1 = Latin1Codec();