import { createHash } from "https://deno.land/std@0.90.0/hash/mod.ts";

const hash = createHash("md5");
hash.update("Your data here");
const data = hash.digest();
console.log(new Uint8Array(data));