Skip to content

Instantly share code, notes, and snippets.

View 1000ch's full-sized avatar

Shogo Sensui 1000ch

View GitHub Profile
#!/bin/node
// via http://starwing.net/suddenly_death.html
function getByteLength (string) {
var r = 0;
for (var i = 0; i < string.length; i++) {
var c = string.charCodeAt(i);
// Shift_JIS: 0x0 ~ 0x80, 0xa0 , 0xa1 ~ 0xdf , 0xfd ~ 0xff
// Unicode : 0x0 ~ 0x80, 0xf8f0, 0xff61 ~ 0xff9f, 0xf8f1 ~ 0xf8f3