Due to the inability to transmit special characters on the router, for tickers containing special characters, please use the hexadecimal encoding format.
export function stringToHex(stringToEncode: string) {
return Buffer.from(stringToEncode).toString('hex')
}