Custom Commands Help! String to HEX

Asked Mar 26, 2021·1 reply·Last activity 5 years ago·Open in Discord ↗
Archived from the original community forum
Things may have changed since it was written. Still stuck? Ask the community on Discord.

I want to create a bot "convert string to hex".
Can someone help me?
for example: !hex ABC
returns: ABC -> 414243
thanks you very much.

1 reply

This should do the trick:

$(eval Input=`$(query)`.split(``);Output=``;B1=`0`;function Hex(Input) {for(i=0;i<Input.length;i++){B1=Input[i];B2=`00`+B1.charCodeAt(0).toString(16);B3=B2.slice(B2.length-2,B2.length);Output+=B3+` `};return Output};Hex(Input))