Python Hashlib.Sha512 ()

from hashlib import sha512
print(sha512('hello'.encode()).hexdigest())
Fantastic Flamingo