MD5 Checksum JavaScript

const crypto = require('crypto')
crypto.createHash('md5').update('hello world').digest('hex')
Poised Peccary