Can't find any way to correctly write these two special brackets without having spacing between the symbols that compose them.
Apparently no package is found by Detexify
Can't find any way to correctly write these two special brackets without having spacing between the symbols that compose them.
Apparently no package is found by Detexify
The XITS font has your desired symbols. You can easily load it using unicode-math.
\documentclass{article}
\usepackage{unicode-math}
\setmathfont{Latin Modern Math}
\setmathfont[range={\llangle,\rrangle,\lBrace,\rBrace}]{XITS Math}
\begin{document}
$\llangle \rho \rrangle$
$\lBrace \varphi \rBrace$
\end{document}