using System.Runtime.InteropServices;
public static void Main()
string tmp = "https://thehungergames.fandom.com/wiki/Clove";
byte[] bTmp = System.Text.Encoding.UTF8.GetBytes(tmp);
using (System.Security.Cryptography.MD5CryptoServiceProvider md5 = new System.Security.Cryptography.MD5CryptoServiceProvider())
hashed = md5.ComputeHash(bTmp);
Guid g = new Guid(hashed);
Console.WriteLine(g.ToString());