Converts a string to its hexadecimal representation.
import { stringToHex } from "thirdweb/utils";const hex = stringToHex("Hello, world!");console.log(hex); // "0x48656c6c6f2c20776f726c6421"
function stringToHex(value_: string, opts: Options): Hex;
The string to convert to hexadecimal.
let value_: string;
Options for the conversion.
let opts: Options;
let returnType: ox__Hex.Hex;
The hexadecimal representation of the input string.