I would like to print unicode character like this one using it's unicode code. I know there is \char command that allows me to print symbols (e.g. \char48 prints 0). But \char1F40D is evaluated to (\char1)F40D.
How can I print symbol by their unicode number?
\documentclass[12pt]{article}
\begin{document}
\begin{itemize}
\item Snake: \some_command{U+1F40D}
\end{itemize}
\end{document}
