[Tex/LaTex] Bigger exclamation mark

symbols

How do you make the exclamation mark to be as big as the bracket?
Thanks for your help!

enter image description here

Best Answer

It can be done -- but it shouldn't.

enter image description here

\documentclass{article}
\usepackage{graphicx} % for "\resizebox" macro
\newlength\mylen
\settoheight{\mylen}{$\bigg)$}
\newcommand\bigbang{\vcenter{\hbox{\resizebox{!}{1.6\mylen}{!}}}}
\begin{document}
\[ 
\Biggl( \biggl( \frac{p-1}{2}\biggr) \bigbang \Biggr) 
\]
\end{document}