Converts a string to its hexadecimal representation.
import { stringToHex } from "thirdweb/utils";const hex = stringToHex("Hello, world!");console.log(hex); // "0x48656c6c6f2c20776f726c6421"
The hexadecimal representation of the input string.