For simple icons, I would also use TikZ to draw my own icon (e.g. modelled on your link).

\documentclass{article}
\usepackage{tikz}
\newcommand{\disc}{{\tikz[baseline=-.75ex]{%
\draw[line width=.1ex] (0,0) circle(.8ex);
\draw[line width=.2ex] (0,0) circle(.2ex);
\draw[line width=.15ex] ([shift=(270:.5ex)]0,0) arc (270:340:.5ex);
\draw[line width=.15ex] ([shift=(90:.5ex)]0,0) arc (90:160:.5ex);
}}}
\begin{document}
Billie Holiday, {\it Body and Soul}, Verve Records \disc
\Large {\it Body and Soul} (1957) \disc
\footnotesize Billie Holiday, {\it Body and Soul} (1957) \disc
\tiny Billie Holiday, {\it Body and Soul} (1957), Verve Records \disc
\end{document}
Best Answer
LaTeX defines
\to
as\rightarrow
:The other direction is
\gets
:For
\leftrightarrow
you can define your own command, e.g.\biconditional
:Remarks:
\iff
adds some extra space (fromfontmath.ltx
):The example also shows some other arrow variants.