From my limited understanding of logical operators, it is possible to express the more complex logical operators such as $\operatorname{xnor}$ and $\operatorname{iff}$ as a combination of just a few basic logical operators ($\operatorname{and}$, $\operatorname{or}$, $\operatorname{not}$).
Is it possible to express boolean operators (e.g. equality, subset) as a combination of logical operators too, but that yield only $true$ (tautology) or $false$ (contradiction)?
For example, I could define the $A = B$ operator (set $A$ contains the exact same elements as set $B$) as $(A \land B) \lor (\overline{A \lor B})$, which would yield $true$ when it is true. But it yields neither $true$ (set of all things) nor $false$ (empty set) when it is false, and I want it to yield $false$. Is this at all possible? And what about the boolean subset operator?
It's possible I'm combining incompatible concepts (sets, logic, boolean algebra) but please bear with me.