We know that a number is divisible by $11$ if the difference of sum of odd placed digits and the sum of even placed digits is divisible by $11$.
For example, the number $1023$ is divisible by $11$:
$1+2=3$
$0+3=3$
$3-3=0$
$0$ is divisible by $11$. so $1023$ is divisible by $11$.
Also we can say $1-0+2-3=0$.
On the other hand there are unique rules for divisibility by odd prime numbers. For example, to find if a number is divisible by $7$, we should multiply the unit digit by $2$, then substract the remaining number from that. For example, for $343$ we have $34-6=28$ and $28$ is divisible by $7$.
My question: Is there such a rule for divisibility by $11$ as well?