Skip to content

stringToHex

stringToHex(value_, opts?): Hex

Encodes a UTF-8 string into a hex string

Parameters

value_: string

opts?: StringToHexOpts

Options.

Returns

Hex

Hex value.

Examples

import { stringToHex } from 'viem'
const data = stringToHex('Hello World!')
// '0x48656c6c6f20576f726c6421'
import { stringToHex } from 'viem'
const data = stringToHex('Hello World!', { size: 32 })
// '0x48656c6c6f20576f726c64210000000000000000000000000000000000000000'

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/toHex.d.ts:147