10진수를 텍스트로
10진수 표현을 텍스트로 손쉽게 변환
변환기 도구
Enter decimal values to convert to text. Choose between UTF-8 (supports all characters) and ASCII (only 128 characters). Specify if decimal values are separated by spaces and whether to ignore invalid values.
변환 테이블:
10진수 값 | Character |
---|
Decimal 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와 동일합니다.
변환 프로세스
10진수를 텍스트로 변환하려면 다음 단계를 수행해야 합니다.
- decimal 입력값을 개별 값으로 구문 분석하여 공백으로 구분되어 있는지 여부를 고려합니다.
- Convert each decimal value to its corresponding character using the chosen encoding (ASCII or UTF-8).
- 문자를 결합하여 최종 텍스트 문자열을 만듭니다.
예: 10진수 "72 105"를 텍스트로 변환
1단계: 10진수 값을 구분합니다.
72 및 105
Step 2: Convert each decimal value to a character (ASCII):
72 → H
105 → i
3단계: 캐릭터 결합:
Hi
사용 참고 사항
- 각 10진수 값은 0에서 255 사이의 유효한 정수여야 합니다.
- When using ASCII encoding, any decimal value outside the 7-bit ASCII range (0-127) will be converted to a question mark (?).
- UTF-8 인코딩은 특수 기호, 이모티콘 및 영어가 아닌 언어의 문자를 포함한 모든 유니코드 문자를 지원합니다.
- 일부 10진수 값은 인쇄할 수 없는 문자를 나타낼 수 있으며, 이는 공백 또는 특수 기호로 표시됩니다.