# hash_sha3_256

Computes a SHA3-256 hash digest.

```tql
hash_sha3_256(x:any, [seed=string]) -> string
```

## Description

The `hash_sha3_256` function calculates a SHA3-256 hash digest for the given value `x`.

## Examples

### Compute a SHA3-256 digest of a string

```tql
from {x: hash_sha3_256("foo")}
```

```tql
{x: "76d3bc41c9f588f7fcd0d5bf4718f8f84b1c41b20882703100b9eb9413807c01"}
```

## See Also

* [`hash_md5`](https://preview.docs.tenzir.com/375/375/reference/functions/hash_md5.md)
* [`hash_sha1`](https://preview.docs.tenzir.com/375/375/reference/functions/hash_sha1.md)
* [`hash_sha224`](https://preview.docs.tenzir.com/375/375/reference/functions/hash_sha224.md)
* [`hash_sha256`](https://preview.docs.tenzir.com/375/375/reference/functions/hash_sha256.md)
* [`hash_sha384`](https://preview.docs.tenzir.com/375/375/reference/functions/hash_sha384.md)
* [`hash_sha512`](https://preview.docs.tenzir.com/375/375/reference/functions/hash_sha512.md)
* [`hash_sha3_224`](https://preview.docs.tenzir.com/375/375/reference/functions/hash_sha3_224.md)
* [`hash_sha3_384`](https://preview.docs.tenzir.com/375/375/reference/functions/hash_sha3_384.md)
* [`hash_sha3_512`](https://preview.docs.tenzir.com/375/375/reference/functions/hash_sha3_512.md)
* [`hash_xxh3`](https://preview.docs.tenzir.com/375/375/reference/functions/hash_xxh3.md)
* [Manipulate strings](https://preview.docs.tenzir.com/375/375/guides/transformation/manipulate-strings.md)