hexToString
hexToString(
hex
,opts
?):string
Decodes a hex value into a UTF-8 string.
Parameters
• hex: `0x${string}`
Hex value to decode.
• opts?: HexToStringOpts
Options.
Returns
string
String value.
Examples
import { hexToString } from 'viem'const data = hexToString('0x48656c6c6f20576f726c6421')// 'Hello world!'
import { hexToString } from 'viem'const data = hexToString('0x48656c6c6f20576f726c64210000000000000000000000000000000000000000', { size: 32,})// 'Hello world'
Source
node_modules/.pnpm/viem@2.8.18_typescript@5.4.5_zod@3.23.8/node_modules/viem/_types/utils/encoding/fromHex.d.ts:148