I want to use the ballot box character instead of a bullet in an itemize environment.
How many wives did Henry VIII had?
☐ 3
☐ 6
☐ 8
I want to use the ballot box character instead of a bullet in an itemize environment.
How many wives did Henry VIII had?
☐ 3
☐ 6
☐ 8
For example (last item without changes)
\documentclass{article}
\usepackage{latexsym}
\begin{document}
\def\Item{\item[$\Box$]}
\begin{itemize}
\Item
A
\Item
B
\item
C
\end{itemize}
\end{document}

enumitemand specify thelabelas☐or$\square$. To find an appropriate symbol, see How to look up a symbol? – Werner May 23 '13 at 18:51