ASSIGN a = "Hello World" //Hashing the variable 'a' with methods SHA-256, SHA-384 and MD5 with parameter UTF8 ASSIGN b = a.hash("SHA-256", "UTF8") ASSIGN c = a.hash("SHA-384", "UTF8") ASSIGN d = a.hash("MD5", "UTF8") //Hashing the variable 'a' with methods SHA-256, SHA-384 and MD5 with parameter UTF16 ASSIGN e = a.hash("SHA-256", "UTF16") ASSIGN f = a.hash("SHA-384", "UTF16") ASSIGN g = a.hash("MD5", "UTF16")