Character - Null Character (NUL)

Data System Architecture

About

The null character (also known as null terminator) 1), abbreviated NUL, is a control character with the value zero

Position

It's the first character of most of the character set such as ASCII and unicode

You can get it with the 0 code point.

Example in Javascript:

String.fromCodePoint(o);

The null character may be used to determine an header position in a file.

Ie all previous characters may be part of an header that adds extra metadata information.

For instance 2), git will add:

  • the type of object
  • a space
  • the size in bytes of the content
  • and a final null byte.
header = "blob #{content.bytesize}\0"





Discover More
Data System Architecture
Characters - EOF (End of File)

EOF is a symbolic name and represents the end of: a file of an input sequence The null terminator '\0' may also be used as “end of file” marker. Type: Ctrl+D (^D) on unix - ...
Data System Architecture
Data Type - Null Value

Every data type includes a special value, called the null value, sometimes denoted by the keyword NULL that reflects the optionality character of the value. The data type of the null value implied by...
Regexp
Regular Expression - Character Matcher

Character matcher matchesone characters in a regular expression pattern. For multiple character match, see Symbol Matches x The character x \\ The backslash character \0n The character with...
Data System Architecture
Text - Control Characters

Control characters are used to control the interpretation or display of text, but these characters themselves have no visual or spatial representation. ... Unicode_control_characterscontrol...
Map Of Internet 1973
What is a Domain Name in DNS ?

The term domain name is a name: in the Domain NameSpace (DNS) that identifies an object (known also as node) in the domain database (ie a DNS database or a local host file) It's also known as...



Share this page:
Follow us:
Task Runner