I found that work with unicode characters is a lot easier using xelatex than pdflatex, therefore I'd like to use it. Most of the content is displayed correctly but I have a problem with some special unicode characters like ├ or └ which aren't shown in the output.
My file looks like that
\documentclass{article}
\usepackage{fontspec}
\usepackage{listings}
\begin{document}
These characters are working - +ľščťžýáí˝¨˘˛˙´°'
These aren't - ├ └
\begin{lstlisting}
Listing: ├ └
\end{lstlisting}
\end{document}
So my question is: How to "enable support" for these characters? I want to use them in the lstlisting environment too.
Is there any way? Thanks.