[Tex/LaTex] How to generate a less than symbol and vertical bar that are the same height

symbols

In a particular document I need to produce a less than symbol next to a vertical bar. The two symbols need to be the same height. I have used \textbar \textless but the less two symbols are not the same height. I don't mind which symbol is made larger or smaller, as long as they are the same height.

(I will also need to do the same with a greater than symbol, and a broken vertical bar).

Best Answer

Here is an answer of what I can imagine you mean:

\documentclass{article}
\usepackage{textcomp} % for "\textbrokenbar"
\begin{document}
$\langle\vert$ $\vert\rangle$ 
$\langle$\textbrokenbar\ \textbrokenbar$\rangle$ 
\end{document}

Output:

enter image description here