using System.Security.Cryptography;
public static void Main()
string input = "https://fwus2wcedfs.dfs.core.windows.net/large-number-of-files/PARQUET/functional/multiple_rowgroups.parquet_00000000000*";
using (var md5 = MD5.Create())
byte[] hash = md5.ComputeHash(Encoding.Unicode.GetBytes(input));
var guid = new Guid(hash).ToString().ToUpper();