./prontouso.com
TEKS & PENULISAN

Pemeriksa Karakter Unicode

Analisis teks karakter demi karakter untuk melihat nama resmi Unicode, codepoint (U+XXXX), representasi byte UTF-8 dan UTF-16, serta kategori karakter.

Status alatBerjalan di browser Anda
Pratinjau

Input

Karakter

CharCode pointKategoriNama
CU+0043LetterLATIN CAPITAL LETTER C
aU+0061LetterLATIN SMALL LETTER A
fU+0066LetterLATIN SMALL LETTER F
eU+0065LetterLATIN SMALL LETTER E
́U+0301OtherName not available in browser runtime
U+00A0Whitespace · tidak terlihatNO-BREAK SPACE
tU+0074LetterLATIN SMALL LETTER T
eU+0065LetterLATIN SMALL LETTER E
sU+0073LetterLATIN SMALL LETTER S
tU+0074LetterLATIN SMALL LETTER T
U+200BOther · tidak terlihatZERO WIDTH SPACE

Cara kerja

  1. Masukkan data Anda

    Isi nilai yang diperlukan, tempel teks Anda, atau unggah file yang ingin diproses.

  2. Lihat hasil seketika

    Sebagian besar alat diperbarui secara langsung saat Anda mengetik; beberapa menggunakan satu tombol tindakan.

  3. Gunakan hasil Anda

    Salin, unduh, atau bagikan hasil yang dihasilkan — Anda selalu memiliki kendali penuh atas data Anda.

Privasi dan pemrosesan dataBerjalan secara lokal di browser Anda. Alat ini tidak mengunggah data Anda.

Apa itu Pemeriksa Karakter Unicode?

Reveal the code points behind a string so invisible characters, combining accents, emoji, and look-alike text are easier to diagnose.

PAHAMI CARA KERJA ALAT

How to inspect Unicode text

Reading the table

Each visible row represents one Unicode code point from the input. The table shows the character, its U+ value, a broad category, and a name when the runtime can provide one.

Invisible characters

Tabs, line feeds, no-break spaces, zero-width spaces, joiners, and similar characters are marked as invisible. These characters often explain why search, copy/paste, alignment, or validation behaves strangely.

Normalization buttons

  • NFC composes characters when possible, turning many letter-plus-accent sequences into a single code point.
  • NFD decomposes characters into base letters plus combining marks.
  • NFKC and NFKD also fold compatibility characters, which can change symbols and full-width forms more aggressively.

When to use it

  • Debug text that looks identical but fails equality checks.
  • Find hidden zero-width or no-break characters in copied content.
  • Compare composed and decomposed accented text before storing or matching it.
  • Inspect emoji, symbols, and punctuation that may not be obvious by sight.

Content handling

Normalization changes the text in the input field. Copy the original elsewhere first if you need to compare before and after carefully.

Pertanyaan yang Sering Diajukan (FAQ)

Why does Café sometimes show as more than one character?

The accent can be stored as a separate combining mark after the letter. NFC usually composes that into one precomposed character when Unicode has one available.

What does invisible mean here?

It means the code point has little or no visual width, such as a tab, line feed, no-break space, zero-width space, or joiner. It can still affect matching, layout, and cursor movement.

Why does the name say it is not available?

Browsers do not expose a full Unicode name database to JavaScript. The tool names common controls, spaces, ASCII letters, and digits, then falls back when no name is available.

Can normalization change what users see?

Yes, especially with NFKC and NFKD. They can fold compatibility characters such as full-width letters or special symbols, so review the text after applying them.