Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS String To GBK</title>
  <style>
    body, input {
      font-family: monospace;
    }
    input {
      width: 400px;
    }
  </style>
</head>
<body>
  <div>JS String: <input type="text" id="txtStr" value="你好123"></div>
  <div>GBK (Dec): <input type="text" id="txtGbkDec" readonly></div>
  <div>GBK (Hex): <input type="text" id="txtGbkHex" readonly></div>
  <div><button id="btnConvert">Convert</button></div>
  <script type="module">
    import str2gbk from 'https://unpkg.com/str2gbk/index.js'
    btnConvert.onclick = function() {
      const gbkBuf = str2gbk(txtStr.value)
      txtGbkDec.value = gbkBuf
      txtGbkHex.value = [...gbkBuf]
        .map(v => v.toString(16).padStart(2, '0'))
        .join(' ')
    }
    btnConvert.onclick()
  </script>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
EtherDreampro
0viewers