Free2BoxFree2Box

ASCII / Unicode 조회

ASCII 및 Unicode 문자 코드 검색 및 조회

문자 변환기
문자 또는 코드 포인트 입력
문자
10진
16진
8진
2진
HTML
ASCII 테이블
10진16진8진문자설명
000000·NUL (Null)
101001·SOH (Start of Heading)
202002·STX (Start of Text)
303003·ETX (End of Text)
404004·EOT (End of Transmission)
505005·ENQ (Enquiry)
606006·ACK (Acknowledge)
707007·BEL (Bell)
808010·BS (Backspace)
909011·TAB (Horizontal Tab)
100A012·LF (Line Feed)
110B013·VT (Vertical Tab)
120C014·FF (Form Feed)
130D015·CR (Carriage Return)
140E016·SO (Shift Out)
150F017·SI (Shift In)
1610020·DLE (Data Link Escape)
1711021·DC1 (Device Control 1)
1812022·DC2 (Device Control 2)
1913023·DC3 (Device Control 3)
2014024·DC4 (Device Control 4)
2115025·NAK (Negative Acknowledge)
2216026·SYN (Synchronous Idle)
2317027·ETB (End of Trans. Block)
2418030·CAN (Cancel)
2519031·EM (End of Medium)
261A032·SUB (Substitute)
271B033·ESC (Escape)
281C034·FS (File Separator)
291D035·GS (Group Separator)
301E036·RS (Record Separator)
311F037·US (Unit Separator)
3220040 Space
3321041!!
3422042""
3523043##
3624044$$
3725045%%
3826046&&
3927047''
4028050((
4129051))
422A052**
432B053++
442C054,,
452D055--
462E056..
472F057//
483006000
493106111
503206222
513306333
523406444
533506555
543606666
553706777
563807088
573907199
583A072::
593B073;;
603C074<<
613D075==
623E076>>
633F077??
6440100@@
6541101AA
6642102BB
6743103CC
6844104DD
6945105EE
7046106FF
7147107GG
7248110HH
7349111II
744A112JJ
754B113KK
764C114LL
774D115MM
784E116NN
794F117OO
8050120PP
8151121QQ
8252122RR
8353123SS
8454124TT
8555125UU
8656126VV
8757127WW
8858130XX
8959131YY
905A132ZZ
915B133[[
925C134\\
935D135]]
945E136^^
955F137__
9660140``
9761141aa
9862142bb
9963143cc
10064144dd
10165145ee
10266146ff
10367147gg
10468150hh
10569151ii
1066A152jj
1076B153kk
1086C154ll
1096D155mm
1106E156nn
1116F157oo
11270160pp
11371161qq
11472162rr
11573163ss
11674164tt
11775165uu
11876166vv
11977167ww
12078170xx
12179171yy
1227A172zz
1237B173{{
1247C174||
1257D175}}
1267E176~~
1277F177·DEL (Delete)

사용 방법

1

텍스트 붙여넣기 또는 입력

입력 영역에 텍스트, 코드 또는 데이터를 입력하세요.

2

옵션 선택

적용할 변환이나 포맷을 선택하세요.

3

결과 복사

한 번의 클릭으로 출력을 클립보드에 복사하세요.

이 도구를 사용하는 이유

100% 무료

숨겨진 비용도, 프리미엄 등급도 없습니다 — 모든 기능이 무료입니다.

설치 불필요

브라우저에서 완전히 실행됩니다. 소프트웨어를 다운로드하거나 설치할 필요가 없습니다.

프라이빗 & 안전

데이터가 기기 밖으로 나가지 않습니다. 어떤 서버에도 업로드되지 않습니다.

모바일 지원

완전 반응형 — 스마트폰, 태블릿, 데스크톱에서 사용할 수 있습니다.

ASCII & Unicode Lookup: Master Character Encoding for Development

Key Takeaways

  • ASCII defines 128 characters (0-127) covering English letters, digits, and control characters — the foundation of all modern text encoding.
  • Unicode extends ASCII to over 149,000 characters covering every writing system, emoji, and symbol used worldwide.
  • Understanding character codes is essential for debugging encoding issues, working with special characters, and handling internationalized text.

Every character you see on screen has a numeric code behind it. The letter 'A' is 65 in ASCII, a space is 32, and the grinning face emoji is U+1F600 in Unicode. These codes are the foundation of how computers store, transmit, and display text. An ASCII/Unicode lookup table is an indispensable reference for developers debugging encoding issues, working with special characters, writing parsers, or handling multilingual text in their applications.

Unicode 16.0 defines 154,998 characters covering 168 modern and historic scripts plus thousands of symbols and emoji

Unicode Coverage

When to Use an ASCII/Unicode Lookup

1

Debugging Character Encoding Issues

When you see garbled text (mojibake) instead of the expected characters, looking up character codes helps identify whether the issue is UTF-8, Latin-1, or another encoding.

2

Working with Special Characters in Code

Insert non-printable characters, Unicode escape sequences, HTML entities, or special symbols using their exact code points.

3

Parsing and Validation

When building text parsers or input validators, reference ASCII code ranges to check for digits (48-57), uppercase letters (65-90), or control characters (0-31).

4

Internationalization (i18n) Development

Look up character ranges for specific scripts (CJK, Arabic, Devanagari) when implementing text processing, sorting, or display logic for multilingual applications.

Tips for Character Encoding

ASCII codes 0-31 are control characters (tab is 9, newline is 10, carriage return is 13). Code 127 is DELETE.

UTF-8 is backward-compatible with ASCII — the first 128 characters are identical. This is why ASCII text is valid UTF-8.

In HTML, use named entities or numeric codes for characters with special meaning in markup.

JavaScript uses UTF-16 internally. Characters above U+FFFF (like emoji) use surrogate pairs and have .length of 2.

All character lookups are performed locally in your browser. No text or queries are sent to any external server.

자주 묻는 질문