I want to define a pair of delimiters that look like (( and )). According to this question, I am looking for U+2E28 and U+2E29. However, I have no idea how to use these to define the symbols I want. What I have tried:
\usepackage{stickstootext}
\usepackage[stix2,vvarbb]{newtxmath}
\DeclareMathSymbol{\lParen}{\mathopen}{boldsymbols}{"2E28}
\DeclareMathSymbol{\rParen}{\mathclose}{boldsymbols}{"2E29}
But what shows are strange symbols rather than I expect.
P.S. You can try $\Big\lParen bla \Big\rParen$ to see why I do not want to simply define
\newcommand\lParen{\mathopen{(\!(}}
\newcommand\lParen{\mathclose{)\!)}}
