วันศุกร์ที่ 11 กันยายน พ.ศ. 2558

แปลงข้อความเป็น ไบนารี่ โค้ด


วันนี้ว่างมากครับเลย มาเขียนโค๊ดสำหรับแปลงข้อความเป็น ไบนารี่โค๊ดครับ   ^ ^
ใช้โค๊ด HTML กับ JavaScript เผื่อจะเป็นประโยชน์สำหรับใครสักคนอิอิ เห็น เด็กคอมชอบ ใช้คุยกัน

ใส่ข้อความ

ผลลัพธ์ จากการแปลง


 


หากอยากแปลง จากไบนารี่เป็นข้อความ เข้าที่ลิ้งนี้นะครับ แปลงไบนารี่ โค๊ด เป็นข้อความ

โค๊ด ที่ใช้

<br />
ใส่ข้อความ <br />
<textarea autofocus="" class="inputBinary" id="inputBinary" style="heigth: 250px; width: 350px;">ผม รัก คุณ</textarea>

<br />

ผลลัพธ์ จากการแปลง <br />

<textarea class="outputBinary" id="outputText" readonly="" style="heigth: 250px; width: 350px;"></textarea>

<input onclick="TextToBin()" type="button" value="Convert" />
<script type="text/javascript">

 function TextToBin() {

  

  var input = document.getElementById("inputBinary").value.toString();

  if(input =="")

  {  

   document.getElementById("inputBinary").focus();

   retrun ;

  } 

  var str ="";    

   for (i=0; i < input.length; i++) {

      str+=input[i].charCodeAt(0).toString(2) + " ";

    }

  document.getElementById("outputText").value = str;

 }
 </script>

ไม่มีความคิดเห็น:

แสดงความคิดเห็น