x0022
x0022 refers to the hexadecimal representation of the code point U+0022 in Unicode and ASCII. The character at this code point is the quotation mark, specifically the straight double quote ("). In Unicode, U+0022 is the QUOTATION MARK and is part of the basic Latin block. In ASCII, 0x22 corresponds to decimal 34, placing it among the standard printable characters.
In programming and data formats, x0022 is commonly encountered as a hex escape sequence that represents the
Beyond source code, the double quote character has dedicated representations in other contexts. In HTML, the
Practical considerations include that the double quote is a delimiter in many languages and data formats, so
See also: ASCII, Unicode, escape sequences, string literals, JSON, HTML entities.