using System.Security.Cryptography;
public static void Main()
StringBuilder hash = new StringBuilder();
string input = "Technology crowds";
var md5provider = new MD5CryptoServiceProvider();
byte[] bytes = md5provider.ComputeHash(new UTF8Encoding().GetBytes(input));
for (int i = 0; i < bytes.Length; i++)
hash.Append(bytes[i].ToString("x2"));
Console.WriteLine(string.Format("The MD5 hash is: {0}",hash));