函数原型

  • func hexDecode(s1 string) bytes
  • func hexDecode(b1 bytes) bytes

参数介绍

参数名称参数介绍
s1/b1为需要进行编码的字符串或者字节数组

举例

待转换数据转换语句输出结果
"61736466"hexDecode("61736466")asdf
b"733B6529392a2642"hexDecode(b"733B6529392a2642")s;e)9*&B

Was this page helpful?