File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -236,6 +236,8 @@ following forms:
236
236
* A _ whitespace escape_ is one of the characters ` U+006E ` (` n ` ), ` U+0072 `
237
237
(` r ` ), or ` U+0074 ` (` t ` ), denoting the Unicode values ` U+000A ` (LF),
238
238
` U+000D ` (CR) or ` U+0009 ` (HT) respectively.
239
+ * The _ null escape_ is the character ` U+0030 ` (` 0 ` ) and denotes the Unicode
240
+ value ` U+0000 ` (NUL).
239
241
* The _ backslash escape_ is the character ` U+005C ` (` \ ` ) which must be
240
242
escaped in order to denote * itself* .
241
243
@@ -297,6 +299,8 @@ following forms:
297
299
* A _ whitespace escape_ is one of the characters ` U+006E ` (` n ` ), ` U+0072 `
298
300
(` r ` ), or ` U+0074 ` (` t ` ), denoting the bytes values ` 0x0A ` (ASCII LF),
299
301
` 0x0D ` (ASCII CR) or ` 0x09 ` (ASCII HT) respectively.
302
+ * The _ null escape_ is the character ` U+0030 ` (` 0 ` ) and denotes the byte
303
+ value ` 0x00 ` (ASCII NUL).
300
304
* The _ backslash escape_ is the character ` U+005C ` (` \ ` ) which must be
301
305
escaped in order to denote its ASCII encoding ` 0x5C ` .
302
306
You can’t perform that action at this time.
0 commit comments