gpt4 book ai didi

c# - 如何将 C# 字符转换为其十六进制代码表示形式

转载 作者:太空狗 更新时间:2023-10-29 17:42:51 27 4
gpt4 key购买 nike

我需要做的是将 C# 字符转换为转义的 unicode 字符串:

因此,'A' -> "\x0041"。

有没有比以下更好的方法:

char ch = 'A';
string strOut = String.Format("\\x{0}", Convert.ToUInt16(ch).ToString("x4"));

最佳答案

类型转换和使用composite formatting :

char ch = 'A';
string strOut = String.Format(@"\x{0:x4}", (ushort)ch);

关于c# - 如何将 C# 字符转换为其十六进制代码表示形式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/369241/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com