[Tex/LaTex] How to create a rectangle symbol

symbols

I need to represent symmetries of a a rectangle as a set, and in my text book they do so by using the following notation

S(SYMBOL-THAT-LOOKS-LIKE-A-RECTANGLE)

I searched everywhere, tried http://detexify.kirelabs.org/classify.html and no luck. So, I came to terms with there not being any rectangle, and the closest I have been able to get is

$s\sqsubset\sqsupset$

Is there any way I can reduce the spacing between them so they make a better rectangle?

Best Answer

This is U+25AD (▭) and available as \hrectangle in unicode-math (if using xelatex or lualatex) or stix if using pdflatex (and will be available in other font packages that cover the Unicode math blocks)

enter image description here

\documentclass{article}

\usepackage{stix}

\begin{document}

$a \hrectangle b $

\end{document}