Rotate Right
Result
—
About this tool
Rotate a binary string right by a specified number of positions.
Example
Input: 1101, rotate=1 Output: 1110
Conversion formula
Right rotate: take bits[end-k+1..end] + bits[0..end-k].
—
Rotate a binary string right by a specified number of positions.
Input: 1101, rotate=1 Output: 1110
Right rotate: take bits[end-k+1..end] + bits[0..end-k].