> 검사 | 디코딩 | 분석 <
// Unicode 코드 포인트, 인코딩 및 문자 세부 정보 검사
[INSPECT]
문자 분석
모든 텍스트를 문자별로 분석합니다.
[ENCODE]
UTF-8/UTF-16 보기
각 문자의 정확한 바이트 표현을 확인합니다.
[FREE]
블록 감지
Unicode 블록을 자동으로 감지하여 표시합니다.
// UNICODE 정보
Unicode 작동 방식:
Unicode는 모든 문자에 고유한 코드 포인트를 할당하는 범용 표준입니다.
예시:
"A" → U+0041, Decimal 65, UTF-8: 41, UTF-16: 0041
일반적인 용도:
- >인코딩 문제 디버깅
- >보이지 않는 문자 검사
- >UTF-8/UTF-16 바이트 시퀀스 확인
- >Unicode 코드 포인트 검색
- >이모지 인코딩 분석
>> 자주 묻는 질문
Q: What is Unicode?
A: Unicode is a universal character encoding standard that assigns a unique code point to every character from every writing system.
Q: UTF-8 vs UTF-16?
A: UTF-8 uses 1-4 bytes and is ASCII-compatible. UTF-16 uses 2 or 4 bytes and is used by JavaScript and Windows.
Q: What is BMP?
A: The Basic Multilingual Plane (U+0000 to U+FFFF) contains the most commonly used characters.
Q: How many characters?
A: Unicode supports 1,114,112 code points. Over 149,000 are currently assigned.
Q: Code point vs character?
A: A code point is the numeric value (e.g., U+0041). Some visible characters use multiple code points.