Skip to content

hexToNumber

hexToNumber(hex, opts?): number

Decodes a hex string into a number.

Parameters

hex: `0x${string}`

Hex value to decode.

opts?: HexToBigIntOpts

Options.

Returns

number

Number value.

Examples

import { hexToNumber } from 'viem'
const data = hexToNumber('0x1a4')
// 420
import { hexToNumber } from 'viem'
const data = hexToBigInt('0x00000000000000000000000000000000000000000000000000000000000001a4', { size: 32 })
// 420

Defined in

node_modules/.pnpm/viem@2.14.2_bufferutil@4.0.8_typescript@5.5.2_utf-8-validate@6.0.4_zod@3.23.8/node_modules/viem/_types/utils/encoding/fromHex.d.ts:121