ASCII punctuation characters can be escaped: ``` \`\*\_\[\# .

`*_[#

``` Non-ASCII punctuation characters can't be escaped: ``` \a\« .

\a\«

``` An escaped newline is a hard break: ``` ab\ c .

ab
c

``` There can be spaces and tabs between the backslash and the newline: ``` ab\ c .

ab
c

``` There can also be spaces and tabs before the backslash, which are ignored: ``` ab \ c .

ab
c

``` An escaped space is a non-breaking space: ``` a\ b .

a b

```