Hi,
I'm trying to convert a string containing chinese characters to hex using PHP.
example:
t = 0x74
e = 0x65
s = 0x73
t = 0x74
简 = 7B80
test简 = 0x740x650x730x747B80
e.g. if the string was test简, the output should be 0x740x650x730x747B80
I'm using the GET function to set the string. e.g. website.com/test.php?string=test简

