> For the complete documentation index, see [llms.txt](https://ellcrys.gitbook.io/ellcrys/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ellcrys.gitbook.io/ellcrys/object-references/hex-value-types.md).

# Hex Value Types

## HexNumber

HexNumber represents a numeric value encoded as a hexadecimal string. Commonly used to encode block numbers, timestamp and other numeric values that are too large to be assigned to a Javascript variable.&#x20;

### Example

```javascript
"0x5bcc82b7"
```

## HexByte

HexByte represents a byte array encoded as a hexadecimal string. Common used to represent signatures and hashes.

### Example

```javascript
"0x3427713ac0f543481fb0559ff5a7543b427d951f838c18b2796bad0d868902d2123ffa8e67d4e5dce39e04594ad783583f62e1acdcb514d4a732c9c7bf7b2902"
```
