<html>
<head>
<title>
Unsigned Right Shift Example 1
</title>
<script type="text/javascript">
var oldValue = -64; //equal to binary 11111111111111111111111111000000
var newValue = oldValue >>> 5; //equal to decimal 134217726
alert(newValue); //134217726
</script>
</head>
<body>
</body>
</html>