Python hashlib.sha512 ()

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