<small id='LCyLK'></small><noframes id='LCyLK'>

<legend id='LCyLK'><style id='LCyLK'><dir id='LCyLK'><q id='LCyLK'></q></dir></style></legend>
<i id='LCyLK'><tr id='LCyLK'><dt id='LCyLK'><q id='LCyLK'><span id='LCyLK'><b id='LCyLK'><form id='LCyLK'><ins id='LCyLK'></ins><ul id='LCyLK'></ul><sub id='LCyLK'></sub></form><legend id='LCyLK'></legend><bdo id='LCyLK'><pre id='LCyLK'><center id='LCyLK'></center></pre></bdo></b><th id='LCyLK'></th></span></q></dt></tr></i><div id='LCyLK'><tfoot id='LCyLK'></tfoot><dl id='LCyLK'><fieldset id='LCyLK'></fieldset></dl></div>
  • <tfoot id='LCyLK'></tfoot>

          <bdo id='LCyLK'></bdo><ul id='LCyLK'></ul>
      1. 使用 javascript 将 Base64 解码为十六进制字符串

        时间:2023-10-01

        <small id='Xgrr0'></small><noframes id='Xgrr0'>

          1. <legend id='Xgrr0'><style id='Xgrr0'><dir id='Xgrr0'><q id='Xgrr0'></q></dir></style></legend>
              <tbody id='Xgrr0'></tbody>
          2. <i id='Xgrr0'><tr id='Xgrr0'><dt id='Xgrr0'><q id='Xgrr0'><span id='Xgrr0'><b id='Xgrr0'><form id='Xgrr0'><ins id='Xgrr0'></ins><ul id='Xgrr0'></ul><sub id='Xgrr0'></sub></form><legend id='Xgrr0'></legend><bdo id='Xgrr0'><pre id='Xgrr0'><center id='Xgrr0'></center></pre></bdo></b><th id='Xgrr0'></th></span></q></dt></tr></i><div id='Xgrr0'><tfoot id='Xgrr0'></tfoot><dl id='Xgrr0'><fieldset id='Xgrr0'></fieldset></dl></div>

              1. <tfoot id='Xgrr0'></tfoot>
                • <bdo id='Xgrr0'></bdo><ul id='Xgrr0'></ul>
                  本文介绍了使用 javascript 将 Base64 解码为十六进制字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  需要使用 javascript 将 Base64 字符串转换为十六进制.

                  Needing to convert a Base64 string to Hexadecimal with javascript.

                  例子:

                  var base64Value = "oAAABTUAAg=="
                  

                  需要转换方法

                  输出(解码数据(十六进制))A0000005350002

                  Output (Decoded data (hexadecimal)) A0000005350002

                  我知道这是正确的,因为我可以使用这个网站 http://tomeko.net/online_tools/base64.php?lang=en

                  I know this is correct because I can use this website http://tomeko.net/online_tools/base64.php?lang=en

                  输入oAAABTUAAg==的Base64字符串,得到A0000005350002

                  and punch in Base64 string of oAAABTUAAg== and get A0000005350002

                  我尝试了什么?

                  https://github.com/carlo/jquery-base64
                  https://jsfiddle.net/gabrieleromanato/qaght/

                  我发现了很多问题

                  推荐答案

                  atob() 然后 charCodeAt() 会给你二进制 &toString(16) 会给你十六进制.

                  atob() then charCodeAt() will give you binary & toString(16) will give you hex.

                  function base64ToHex(str) {
                    const raw = atob(str);
                    let result = '';
                    for (let i = 0; i < raw.length; i++) {
                      const hex = raw.charCodeAt(i).toString(16);
                      result += (hex.length === 2 ? hex : '0' + hex);
                    }
                    return result.toUpperCase();
                  }
                  
                  console.log(base64ToHex("oAAABTUAAg=="));

                  这篇关于使用 javascript 将 Base64 解码为十六进制字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:将 matplotlib png 转换为 base64 以便在 html 模板中查看 下一篇:如何将base64图像压缩为自定义大小

                  相关文章

                    <legend id='CzA4a'><style id='CzA4a'><dir id='CzA4a'><q id='CzA4a'></q></dir></style></legend>

                    <small id='CzA4a'></small><noframes id='CzA4a'>

                      <tfoot id='CzA4a'></tfoot>

                      <i id='CzA4a'><tr id='CzA4a'><dt id='CzA4a'><q id='CzA4a'><span id='CzA4a'><b id='CzA4a'><form id='CzA4a'><ins id='CzA4a'></ins><ul id='CzA4a'></ul><sub id='CzA4a'></sub></form><legend id='CzA4a'></legend><bdo id='CzA4a'><pre id='CzA4a'><center id='CzA4a'></center></pre></bdo></b><th id='CzA4a'></th></span></q></dt></tr></i><div id='CzA4a'><tfoot id='CzA4a'></tfoot><dl id='CzA4a'><fieldset id='CzA4a'></fieldset></dl></div>
                      • <bdo id='CzA4a'></bdo><ul id='CzA4a'></ul>