Docs

stringToHex

Converts a string to its hexadecimal representation.

Example

import { stringToHex } from "thirdweb/utils";
const hex = stringToHex("Hello, world!");
console.log(hex); // "0x48656c6c6f2c20776f726c6421"

Parameters

Returns

The hexadecimal representation of the input string.