TITLE:JavaScript とバイナリ
* typedarray [#sa090dce]
- (JavaScriptでの)バイナリデータの送信と受信
-- http://d.hatena.ne.jp/yoya/20130425/jsbin
- Typed Arrays: Binary Data in the Browser
-- http://www.html5rocks.com/ja/tutorials/webgl/typed_arrays/
- https://twitter.com/uupaa/status/481784569171939328
Chrome でも
var a = new Uint8Array(3);
a[0]=33;
a[1]=34;
a[2]=35;
String.fromCharCode.apply(null, a); // "!"#"
なので、TypedArray から直接文字列生成できる
* x-user-defined [#gf8c766b]
- charset=x-user-defined について
-- http://javascript.g.hatena.ne.jp/edvakf/20100607/1275931930