Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions book/working_with_strings.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ Nushell currently supports the following escape characters:
- `\n` - newline (line feed)
- `\t` - tab
- `\u{X...}` - a single unicode character, where X... is 1-6 hex digits (0-9, A-F)

To create a `\0` (`NUL`) character, you may use `\u{0}` or
[string interpolation](#string-interpolation) with [`char`](/commands/docs/char.md),
e.g. `(char --integer 0)`.

## Raw Strings

Expand Down