Markdown: Escaping characters

Escaping characters#


To escape characters, prefix them with a backslash (\) (The list of characters that can be escaped is available below).

Markdown HTML Rendering
\\
<p>\<p>
\
\*
<p>*<p>
*
\_
<p>_<p>
_
\`
<p>`<p>
`
\{\}
<p>{}<p>
{}
\[\]
<p>[]<p>
[]
\(\)
<p>()<p>
()
\#
<p>#<p>
#
\+
<p>+<p>
+
\-
<p>-<p>
-
\.
<p>.<p>
.
\!
<p>!<p>
!
\|
<p>|<p>
|
On this page: