[Tex/LaTex] LaTeX and Unicode within verbatim environment

unicode

I am really, really hoping someone has a neet trick for my problem.

I have three Unicode symbols I need to put inside my verbatim environment

├ ─ └ 

all others are not important to me and most definitely will not be. I am used to LaTeX and Texmaker and would want to avoid any shifts to new versions or alternative tools whatsoever at this point. Is there someone out there that can help me with this problem?

Best Answer

Just load pmboxdraw:

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{pmboxdraw}

\begin{document}

\begin{verbatim}
verbatim { ├ ─ └ }
\end{verbatim}

\end{document}

enter image description here