[Tex/LaTex] Typeset the shrug ¯\_(ツ)_/¯ emoji

charactersfununicode

I'm completing a problem set, one problem for which I literally have no idea what to do on. The graders would prefer to have a physical copy of the problem so I thought it best to include the ¯\_(ツ)_/¯ emoji as my answer, instead of something like "Dunno" or "No idea."

Option #1 is to include an image.

Beyond that I actually don't understand how this emoji works. The middle character is Japanese kana "tsu" and proves problematic – TeX wants it in math mode then renders "?" when it is.

Best Answer

Playing a bit with tikz, this is what I got:

enter image description here

\documentclass[margin=3pt]{standalone}

\usepackage{tikz}

\newcommand{\shrug}[1][]{%
\begin{tikzpicture}[baseline,x=0.8\ht\strutbox,y=0.8\ht\strutbox,line width=0.125ex,#1]
\def\arm{(-2.5,0.95) to (-2,0.95) (-1.9,1) to (-1.5,0) (-1.35,0) to (-0.8,0)};
\draw \arm;
\draw[xscale=-1] \arm;
\def\headpart{(0.6,0) arc[start angle=-40, end angle=40,x radius=0.6,y radius=0.8]};
\draw \headpart;
\draw[xscale=-1] \headpart;
\def\eye{(-0.075,0.15) .. controls (0.02,0) .. (0.075,-0.15)};
\draw[shift={(-0.3,0.8)}] \eye;
\draw[shift={(0,0.85)}] \eye;
% draw mouth
\draw (-0.1,0.2) to [out=15,in=-100] (0.4,0.95); 
\end{tikzpicture}}

\begin{document}
Well, \shrug\ or maybe \shrug[x=1ex,y=1ex,blue]?
{\Huge or a huge \shrug}
\end{document}