using System.Security.Cryptography;
public static void Main()
string InputBytes = "Technology crowds";
using (SHA384 sha384Hash = SHA384.Create())
byte[] sourceBytes = Encoding.UTF8.GetBytes(InputBytes);
byte[] hashBytes = sha384Hash.ComputeHash(sourceBytes);
string hash = BitConverter.ToString(hashBytes).Replace("-", String.Empty);
Console.WriteLine(string.Format("The SHA384 hash of {0} is: {1}",InputBytes, hash));