Skip to content

Instantly share code, notes, and snippets.

View adkdev's full-sized avatar
🎯
Focusing

Adisak P. adkdev

🎯
Focusing
  • Bangkok, Thailand
  • 07:01 (UTC +07:00)
  • X @adkdev
View GitHub Profile
@adkdev
adkdev / gist:ab571a6d32120054e197
Created September 22, 2014 07:29
Node.js create md5 hash from utf-8 string
var string = "Sawasdee --> สวัสดี";
var crypto = require('crypto');
crypto.createHash('md5').update(string, 'utf8').digest("hex");