ASCII字符串到16进制在线转换工具


分割符


关于ASCII字符串到16进制在线转换工具:

这个在线ASCII字符串到16进制转换工具可帮助您将一个ASCII字符串转换为16进制数组.

支持的16进制数组分割符号包括 ("", " ", "0x", "0X", "\0x", "\0X", "\x", "\X").

ASCII编码标准:

ASCII (American Standard Code for Information Interchange) 是最广泛使用的字符编码标准. 标准ASCII 有7 bits长度, 共128个不同的字符. 扩展ASCII 有8 bits长度, 256个不同的字符. 版权符号 © 就定义在扩展ASCII表之中.

十六进制(Hex):

十六进制数字系统包含16种字符, 包含(0, 1, 2, 3, 4, 5, 6, 7, 8, 9)加上(a, b, e, d, e, f)6个字符.由于十六进制数字系统可以以可读的方式表示任何二进制字符串,因此它被广泛用于计算机科学领域. SHA256哈希字符串通常显示为十六进制样式字符串,HTML中使用的颜色系统也可以表示为十六进制数字,从#000000(纯黑色)到#FFFFFF(纯白色).

comic ascii to hex

链接:

维基百科 (十六进制): https://en.wikipedia.org/wiki/Hexadecimal

维基百科 (ASCII): https://en.wikipedia.org/wiki/ASCII

用Python进行ASCII字符串到16进制转换:

import binascii


def ascii_to_hex(ascii_str):
    hex_str = binascii.hexlify(ascii_str.encode())
    return hex_str


ascii_input = 'This is an example.'
hex_output = ascii_to_hex(ascii_input)
print('hex result is:{0}'.format(hex_output))

-------------------
hex result is:b'5468697320697320616e206578616d706c652e'

用Java进行ASCII字符串到16进制转换:

public class NumberConvertManager {
    public static String ascii_to_hex(String ascii_str) {
        StringBuilder hex_str = new StringBuilder();
        for (char ch : ascii_str.toCharArray()) {
            hex_str.append(Integer.toHexString((int) ch));
        }
        return hex_str.toString();
    }

    public static void main(String[] args) {
        String ascii_input = "This is an example.";
        String hex_output = ascii_to_hex(ascii_input);
        System.out.println("hex result is:" + hex_output);
    }
}

-------------------
hex result is:5468697320697320616e206578616d706c652e