I'm looking for a nice symbol to mark the separation between two paragraphs.
This is a for a short document, with 3-4 paragraphs.
Common esp. in old books is the hedera ❦ (u+x2766) or turned hedera ❧ (u+x2767), newer books often use an asterisk * or triple asterisk (asterism) ⁂ (u+x2012).
Edit as hinted by comment: How to correctly enter depends on the compiler you use. Cf. How to easily use UTF-8 with LaTeX? and related questions.
\ding{166}, \ding{166} (pifont)
– Nicola Talbot
Jun 09 '16 at 15:09
A very 'baroque' style psvectorian symbols (No, I don't use them personally!)
Compile with --shell-escape enabled or compile with latex 'only', since it uses PostScript based graph drawing.
\documentclass{article}
\usepackage{psvectorian}
\usepackage{auto-pst-pdf}
\usepackage{blindtext}
\begin{document}
\blindtext
\hfil\psvectorian[scale=0.2]{60}\hfil
\blindtext
\hfil\psvectorian[scale=0.2]{60}\hfil
\blindtext
\end{document}
\skull;-) – Jun 09 '16 at 14:57