Hex to Text
16진수 표현을 텍스트로 쉽게 변환
변환기 도구
Enter hexadecimal values to convert to text. Choose between UTF-8 (supports all characters) and ASCII (only 128 characters). Specify if hex values are separated by spaces and whether to ignore invalid characters.
변환 테이블:
Hex Value | Decimal | Character |
---|
Hexadecimal to Text 변환 정보
텍스트 인코딩
텍스트 문자는 컴퓨터에서 숫자로 표시됩니다. 다른 인코딩 시스템은 문자에 다른 숫자를 사용합니다.
ASCII
The ASCII (American Standard Code for Information Interchange) encoding uses 7 bits to represent 128 characters, including English letters (both uppercase and lowercase), digits, and common punctuation symbols. Each ASCII character can be represented by a unique number between 0 and 127.
UTF-8
UTF-8은 유니코드 표준의 모든 문자를 나타낼 수 있는 가변 길이 문자 인코딩입니다. 문자당 1-4바이트를 사용합니다. UTF-8은 ASCII와 역호환되므로 처음 128개의 UTF-8 문자가 ASCII와 동일합니다.
변환 프로세스
16진수를 텍스트로 변환하려면 다음 단계를 수행해야 합니다.
- hexadecimal 입력값을 개별 hex 값으로 구문 분석하여 공백으로 구분되어 있는지 여부를 고려합니다.
- Convert each hexadecimal value to its decimal (base-10) equivalent.
- Convert each decimal value to its corresponding character using the chosen encoding (ASCII or UTF-8).
- 문자를 결합하여 최종 텍스트 문자열을 만듭니다.
예: 16진수 "48 69"를 텍스트로 변환
1 단계 : 16 진수 값을 구분합니다.
48 and 69
2 단계 : 각 16 진수 값을 10 진수로 변환 :
48 (hex) → 72 (decimal)
69 (hex) → 105 (decimal)
Step 3: Convert each decimal value to a character (ASCII):
72 → H
105 → i
4단계: 캐릭터 결합:
Hi
사용 참고 사항
- Each hexadecimal value should be a valid 2-digit hex number (00-FF).
- When using ASCII encoding, any hexadecimal value outside the 7-bit ASCII range (00-7F in hex) will be converted to a question mark (?).
- UTF-8 인코딩은 특수 기호, 이모티콘 및 영어가 아닌 언어의 문자를 포함한 모든 유니코드 문자를 지원합니다.
- 일부 16진수 값은 인쇄할 수 없는 문자를 나타낼 수 있으며, 이는 공백 또는 특수 기호로 표시됩니다.