Update content/appendices.md

This commit is contained in:
Richard van der Hoff 2026-05-05 15:50:02 +01:00 committed by GitHub
parent 6a3d84628b
commit 6ab8a2798a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -157,8 +157,8 @@ escaped = %x62 ; b backspace U+0008
/ %x72 ; r carriage return U+000D
/ %x22 ; " quotation mark U+0022
/ %x5C ; \ reverse solidus U+005C
/ %s"u000" (%x30-37 / %x62 / %x65-66) ; All ASCII control characters which have not been
; escaped otherwise (for example \n).
/ %s"u000" (%x30-37 / %x62 / %x65-66) ; All ASCII control characters which do not have
; dedicated escape sequences (for example \n).
; u000X, where X is [0-7, b, e, f]
/ %s"u001" (%x30-39 / %x61-66) ; u001X, where X is [0-9, a-f]
```