How to produce the table flip emoticon (╯°□°)╯︵ ┻━┻?
This may require some tweaking, but most of the symbols can be found in the stix
package.
\documentclass{article}
\usepackage{graphicx}
\usepackage{stix}
\newcommand{\kora}{$($\rotatebox{45}{$\smile$}$^{\circ}\smwhtsquare^{\circ})\rotatebox{45}{$\smile$}\mkern-6mu\frown$\raisebox{0.5ex}{$\bot$}$\mkern-3.5mu-\mkern-3.5mu$\raisebox{0.5ex}{$\bot$}}
\begin{document}
\kora
\end{document}
Edit:
Here's a version using standard shapes. Thanks to A Feldman for the hint on the table.
\documentclass{article}
\usepackage{graphicx,amssymb,amsmath}
\newcommand{\kora}{%
(\raisebox{0.5em}{\rotatebox{-45}{)}}$^{\circ}{\scriptscriptstyle\Box}^{\circ}$)\raisebox{0.5em}{\rotatebox{-45}{)}}\rotatebox{90}{)}\raisebox{0.2em}{\LARGE \_\hskip-.1em\textvisiblespace\hskip-.1em\_}
}
\begin{document}
\kora
\end{document}
Okay, here is a try:
\documentclass{article}
\usepackage[letterpaper]{geometry}
\usepackage{ amssymb }
\begin{document}
({\ttfamily J}$^{\circ}$$\square$$^{\circ}$){\ttfamily J}$\frown$\LARGE{\_\hskip-.04in\textvisiblespace\hskip-.04in\_}
\end{document}
This works for me on Windows:
\documentclass{minimal}
\usepackage{fontspec}
%\newfontfamily{\fliptablefont}{SimSun}
\newfontfamily{\fliptablefont}{Arial Unicode MS}
\DeclareRobustCommand{\fliptable}{{\fliptablefont(╯°□°)╯︵ ┻━┻}}
\begin{document}
\fliptable
\end{document}