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