16進製到ASCII字符串在線轉換工具



關於16進製到ASCII字符串在線轉換工具:

這個在線16進製到ASCII字符串轉換工具可幫助您將一個16進制數組轉換為ASCII字符串.

支持的16進制數組分割符號包括("", " ", "0x", "0X", "\0x", "\0X", "\x", "\X", "\n", "\t") .

十六進制(Hex):

十六進制數字系統包含16種字符,包含(0, 1, 2, 3, 4, 5, 6, 7, 8, 9)加上(a, b, e, d, e, f) 6個字符.由於十六進制數字系統可以以可讀的方式表示任何二進製字符串,因此它被廣泛用於計算機科學領域. SHA256哈希字符串通常顯示為十六進製樣式字符串,HTML中使用的顏色系統也可以表示為十六進制數字,從#000000(純黑色)到#FFFFFF(純白色).

ASCII編碼標準:

ASCII (American Standard Code for Information Interchange)是最廣泛使用的字符編碼標準.標準ASCII有7 bits長度,共128個不同的字符.擴展ASCII有8 bits長度, 256個不同的字符.版權符號©就定義在擴展ASCII表之中.

comic hex to ascii

鏈接:

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

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

用Python進行16進製到ASCII字符串轉換:

import binascii


def hex_to_ascii(hex_str):
    hex_str = hex_str.replace(' ', '').replace('0x', '').replace('\t', '').replace('\n', '')
    ascii_str = binascii.unhexlify(hex_str.encode())
    return ascii_str


hex_input = '54 68 69 73 20 69 73 20 61 6e 20 65 78 61 6d 70 6c 65 2e'
ascii_output = hex_to_ascii(hex_input)
print('ascii result is:{0}'.format(ascii_output))

-------------------
ascii result is:b'This is an example.'

用Java進行16進製到ASCII字符串轉換:

public class NumberConvertManager {
    public static String hex_to_ascii(String hex_str) {
        hex_str = hex_str.replace(" ", "").replace("0x", "").replace("\\x", "");
        StringBuilder ascii_str = new StringBuilder();
        for (int i = 0; i < hex_str.length(); i += 2) {
            String str = hex_str.substring(i, i + 2);
            ascii_str.append((char) Integer.parseInt(str, 16));
        }
        return ascii_str.toString();
    }

    public static void main(String[] args) {
        String hex_input  = "54 68 69 73 20 69 73 20 61 6e 20 65 78 61 6d 70 6c 65 2e";
        String ascii_output  = hex_to_ascii(hex_input);
        System.out.println("ascii result is:" + ascii_output );
    }
}

-------------------
ascii result is:This is an example.