ASCII 문자열 온라인 변환 도구에 대한 16 진수



정보ASCII 문자열 온라인 변환 도구에 대한 16 진수:

이 온라인 16 진수 - ASCII 문자열 변환 도구는 16 진수 배열을 ASCII 문자열로 변환하는 데 유용합니다.

지원되는 16 진수 배열 스플릿 기호에는 ("", " ", "0x", "0X", "\0x", "\0X", "\x", "\X", "\n", "\t") .

16 진수 (16 진수):

16 진수 시스템은 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9) 플러스 (a, b, e, d, e, f) 문자 16 진수 시스템은 모든 이진 문자열을 읽을 수있는 방식으로 나타낼 수 있으므로 컴퓨터 과학 분야에서 널리 사용됩니다 .HAS256 해시 문자열은 일반적으로 HTML에 사용되는 16 진수 스타일 문자열로 표시됩니다. 색상 시스템은 # 000000 (순수한 검정색)에서 #FFFFFF (순수한 흰색)까지의 16 진수로 표현할 수도 있습니다.

ASCII 코딩 표준:

ASCII (정보 교환을위한 미국 표준 코드 ) 가장 널리 사용되는 표준 ASCII 7 비트 길이가 문자 인코딩 표준, 128 개 다른 문자의 총입니다. 확장 ASCII가 8 비트 길이, 256 개 다른 문자가 있습니다. 저작권 기호 © 정의 확장 ASCII 테이블에서.

comic hex to ascii

링크:

위키피디아 (16 진수): https://en.wikipedia.org/wiki/Hexadecimal

위키피디아 (ASCII): https://en.wikipedia.org/wiki/ASCII

파이썬에서의 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의 ASCII 문자열 변환에 대한 16 진수:

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.