Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72aab10 commit d45994cCopy full SHA for d45994c
getting-started/sigils.markdown
@@ -118,8 +118,8 @@ The following escape codes can be used in strings and char lists:
118
* `\t` – tab
119
* `\v` – vertical tab
120
* `\0` - null byte
121
-* `\xDD` - character with hexadecimal representation DD (e.g., `\x13`)
122
-* `\x{D...}` - character with hexadecimal representation with one or more hexadecimal digits (e.g., `\x{abc13}`)
+* `\xDD` - represents a single byte in hexadecimal (such as `\x13`)
+* `\uDDDD` and `\u{D...}` - represents a Unicode codepoint in hexadecimal (such as `\u{1F600}`)
123
124
Sigils also support heredocs, that is, triple double- or single-quotes as separators:
125
0 commit comments