Skip to content

Instantly share code, notes, and snippets.

@superbrothers
Created January 25, 2011 15:38
Show Gist options
  • Save superbrothers/795079 to your computer and use it in GitHub Desktop.
Save superbrothers/795079 to your computer and use it in GitHub Desktop.
var Buffer = require('buffer').Buffer;
var Iconv = require('iconv').Iconv;
var iconv = new Iconv('cp932', 'UTF-8');
console.log(iconv.convert(new Buffer('こんにちは', 'binary')).toString());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment