Binary sa hexadecimal converter.

2
   
Hex result: 16
function convertbase(x,b1,b2) { d="0123456789ABCDEFX"; x=x.replace(/ /,""); x=x.toUpperCase(); y=0; // return b1+b2; for(i=x.length, s=1; i>=1; i--,s*=b1) { c = x.charAt(i-1); for(j=0; j=1; p/=b2) { i = Math.floor(x/p); y+= d.charAt(i); x-= i*p; } return y; } function convertbase2(x,b1,b2) { x = parseInt(x, b1); y = x.toString(b2); return y; } var gcd = function(a, b) { if ( ! b) { return a; } return gcd(b, a % b); }; function digits_after_period(x) { f = x.toString(); i = f.indexOf('.'); len = f.length-i-1; return len; } function parseFraction(s) { var n1=n2=0; var sign=n3=1; i = s.indexOf(' '); if( i==0 ) s=s.substring(1); i = s.indexOf('-'); if( i==0 ) {s=s.substring(1); sign=-1;} i = s.indexOf(' '); if( i==0 ) s=s.substring(1); i = s.indexOf(' '); if( !isNaN(parseInt(s)) && isFinite(s) ) i=s.length; if( i!=-1 ) { n1 = parseInt(s.substring(0,i)); s = s.substring(i+1); } i = s.indexOf('/'); if( i!=-1 ) { n2 = parseInt(s.substring(0,i)); s = s.substring(i+1); n3 = parseInt(s); } return [sign,n1,n2,n3]; } function setfocus() { document.calcform.x.focus(); } function calc() { x = document.calcform.x.value; y = convert(x); y = roundresult(y); document.calcform.y.value = y; } function calctest() { x = document.calcform.x.value; y = convert(x); //y = roundresult(y); y = roundresult1(y); document.calcform.y.value = y; } function calc3() { x1 = document.calcform.x1.value; x2 = document.calcform.x2.value; y = convert(x1,x2); y = roundresult(y); document.calcform.y.value = y; } function calc4() { x1 = document.calcform.x1.value; x2 = document.calcform.x2.value; x3 = document.calcform.x3.value; y = convert(x1,x2,x3); y = roundresult(y); //yy = y.toString(); //if( yy.length>12 ) { // y = parseFloat(y); // y = y.toPrecision(10); //} document.calcform.y.value = y; } function calc5() { x = document.calcform.x.value; y = convert1(x); y = roundresult(y); document.calcform.y1.value = y; y = convert2(x); y = roundresult(y); document.calcform.y2.value = y; } function calcbase(b1,b2) { x = document.calcform.x.value; document.calcform.y.value = convertbase(x,b1,b2); } function calcbase2() { x = document.calcform.x.value; y = convert(x); document.calcform.y.value = y; } function roundresult(x) { y = parseFloat(x); y = roundnum(y,10); return y; } function roundnum(x,p) { var i; var n=parseFloat(x); var m=n.toPrecision(p+1); var y=String(m); i=y.indexOf('e'); if( i==-1 ) i=y.length; j=y.indexOf('.'); if( i>j && j!=-1 ) { while(i>0) { if(y.charAt(--i)=='0') y = removeAt(y,i); else break; } if(y.charAt(i)=='.') y = removeAt(y,i); } return y; } function removeAt(s,i) { s = s.substring(0,i)+s.substring(i+1,s.length); return s; } -->

Binary sa hexadecimal converter upang i-convert ang isang binary na numero sa hexadecimal.

Sundin ang mga halimbawa sa ibaba:

binary

hex

0000 (2) =

0 (16)

0001 (2) =

1 (16)

0010 (2) =

2 (16)

0011 (2) =

3 (16)

0100 (2) =

4 (16)

0101 (2) =

5 (16)

0110 (2) =

6 (16)

0111 (2) =

7 (16)

1000 (2) =

8 (16)

1001 (2) =

9 (16)

1010 (2) =

A (16)

1011 (2) =

B (16)

1100 (2) =

c (16)

1101 (2) =

d (16)

1110 (2) =

e (16)

1111 (2) =

F (16)

Binary sa hexadecimal converter.