字符串 "hello" 按照 GBK 编码方式转换后的字节再转成字符串
时间: 2023-07-24 14:18:29 浏览: 118
字符串和字节的转换
在GBK编码中,"hello"这个字符串的编码分别为:`68 65 6C 6C 6F`。如果将这些字节转换成字符串,会得到"h"、"e"、"l"、"l"、"o"这五个字符。因此,按照GBK编码方式转换后的字节再转成字符串,结果就是"hello"本身。
以下是使用Python代码进行验证的过程:
```python
# 将"hello"按照GBK编码转换成字节
byte_str = "hello".encode("gbk")
# 将字节转成字符串
str = byte_str.decode("gbk")
print(str) # 输出结果为:"hello"
```
阅读全文