ติดตั้งส่วนขยายสำหรับ CHROME

ไม่มี

U+0000

ความหมายของสัญลักษณ์

The Null symbol was developed for use in computer terminals, printers, text processing systems, and telecommunications equipment to indicate an empty or invalid position in a data stream.

It's the first symbol in Unicode and ASCII taking the zeroth position. Null is used in various ways, such as indicating the end of lines or data blocks, filling space between data elements, preventing the processing of data after a certain stage, etc. As for programming and text data processing, Null can be used as a marker for the end of a string or array of characters, especially in programming languages such as C and C++. They are called C-strings, other names include null-terminated strings or ASCIZ strings. According to this approach, the code working with the string initially does not know its length and processes the characters consequently, until it encounters a null character.

/* Type a string */
i = 0; // start from the beginning of the string
while (s[i] != 0) { // work until the current character is \0
    echo s[i]; // type the next character
    i++; // move to the next one
}

The disadvantages of this approach are the following:

  • The length of the string is not known in advance;
  • The string can't contain null directly \0;
  • If you forget to write \0 at the end or delete it accidentally, the code will continue to work, but the consequences will be unpredictable.

In case of using fixed-width multibyte encodings, the null character should also occupy the required number of bytes. For example, in UCS-2 it's two null bytes. An alternative approach to organizing strings would be to store the length of the string in a separate variable.

However, complete ignorance of this character may sometimes lead to unwanted consequences. For example, some old browsers interpreted a string like <\0script> as <script>, which enabled attackers to inject XSS into other sites (whose authors did not anticipate this nuance when processing data).

Escape sequence \0 is available in many programming languages to insert this character.

Like other control characters, this symbol doesn't possess any visual representation and does not occupy a lot of space on the screen or in printing. In the รูปภาพตัวควบคุม  2400–243F section, there is a separate symbol representing the graphical representation of the null character in the form of the abbreviation NUL — .

Escape sequence: \0.

This symbol is one of the eight control characters, the presence of which is required by the POSIX standard:

ข้อความ «ไม่มี» ถูกรวมอยู่ในหมวดย่อย «ตัวควบคุม C0« ของหมวด "อักษรละตินพื้นฐาน และได้รับการอนุมัติเป็นส่วนหนึ่งของ Unicode เวอร์ชัน 1.1 ในปี 1993.

ข้อความนี้มีให้ใช้งานในภาษาเหล่านี้ด้วย: English; Русский;

ชื่อ Unicode Null
หมายเลข Unicode
ระนาบ 0:เครื่องบินหลายภาษาหลัก
บล็อก Unicode อักษรละตินพื้นฐาน
บล็อกย่อย Unicode ตัวควบคุม C0
เวอร์ชัน Unicode 1.1 (1993)
ปุ่มลัดแป้นพิมพ์ ^@
ลำดับเอสเคป \0
ประเภทขายึดกระจกแบบคู่ (bidi) None
การยกเว้นองค์ประกอบ No
กรณีเปลี่ยน 0000
เปลี่ยนเคสง่ายๆ 0000
scripts Common
การเข้ารหัส hex dec (bytes) dec binary
UTF-8 00 0 0 00000000
UTF-16BE 00 00 0 0 0 00000000 00000000
UTF-16LE 00 00 0 0 0 00000000 00000000
UTF-32BE 00 00 00 00 0 0 0 0 0 00000000 00000000 00000000 00000000
UTF-32LE 00 00 00 00 0 0 0 0 0 00000000 00000000 00000000 00000000

คัดลอกและวางรหัสเหล่านี้เพื่อใช้ตัวละคร ไม่มี ในข้อความสำหรับเว็บไซต์ โซเชียลมีเดีย แอปส่งข้อความ หรือโพสต์บล็อก

HTML
CSS
JavaScript, JSON
Unix, C, PHP, JAVA
Ruby, PHP
Perl
URL-encode

แบบอักษรที่รองรับ ไม่มี

  • Arimo
    Arimo
  • Inter
    Inter
  • Lato
    Lato
  • Montserrat
    Montserrat
  • Noto Serif
    Noto Serif
  • Nunito
    Nunito
  • Open Sans
    Open Sans
  • Poppins
    Poppins
  • Raleway
    Raleway
  • Roboto
    Roboto
คัดลอกแล้ว!