“Ctrl+/”
“F11/ESC”
<!DOCTYPE html>
<html>
<head>
<title>
Bitwise XOR Example 1
</title>
<script type="text/javascript">
var result = 25 ^ 3;
alert(result); //26
</script>
</head>
<body>
</body>
</html>