Global Araç
Text To Binary
Text → İkili
01001000 01100101 01101100 01101100 01101111İkili → Metin
Çözüldü
(yukarıya ikili kod yapıştırın)
UTF-8 kod noktaları kullanır. ASCII ise her karakter → 8 bit, emoji veya Latin olmayan karakterler için daha fazla bit (çünkü çok baytlı UTF-8 dizileri olarak kodlanırlar). Çözme sırasında 0/1 olmayan karakterler yok sayılır — boşluklu veya boşluksuz yapıştırabilirsiniz.
Two-way text ↔ binary using UTF-8 codepoints. Each character becomes its 8-bit byte representation; multi-byte characters (emoji, non-Latin) emit multiple bytes. On decode, any non-0/1 character is stripped, then chunks of 8 bits convert back.
Nasıl Kullanılır
- Type text in the top section to see binary.
- Paste binary in the bottom section to decode.
- Adjust separator (space, dash, none, comma).
Sık Sorulan Sorular
Why are some characters more than 8 bits?
Emoji and non-Latin scripts use multi-byte UTF-8 encoding. 'A' is 8 bits (01000001), but '€' is 24 bits across 3 bytes, and most emoji are 32 bits across 4 bytes.