首页 > 其他分享 >fix btoa decoded error All In One

fix btoa decoded error All In One

时间:2023-03-23 09:00:54浏览次数:29  
标签:decoded execute string fix btoa atob encoded

fix btoa decoded error All In One

base64 encode / decode

Uncaught DOMException: Failed to execute 'atob' on 'Window': The string to be decoded contains characters outside of the Latin1 range.

Uncaught DOMException: Failed to execute 'btoa' on 'Window': The string to be encoded contains characters outside of the Latin1 range.

error

let s = `此密码只会在此设备上解锁您的 MetaMask 钱包。MetaMask 无法恢复此密码。`;

atob(s)
// Uncaught DOMException: Failed to execute 'atob' on 'Window': The string to be decoded contains characters outside of the Latin1 range.

btoa(s)
// Uncaught DOMException: Failed to execute 'btoa' on 'Window': The string to be encoded contains characters outside of the Latin1 range.

solution

btoa(unescape(encodeURIComponent(s)));
// '5q2k5a+G56CB5Y+q5Lya5Zyo5q2k6K6+5aSH5LiK6Kej6ZSB5oKo55qEIE1ldGFNYXNrIOmSseWMheOAgk1ldGFNYXNrIOaXoOazleaBouWkjeatpOWvhueggeOAgg=='

atob(unescape(encodeURIComponent(s)));
// Uncaught DOMException: Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded.

image

(

标签:decoded,execute,string,fix,btoa,atob,encoded
From: https://www.cnblogs.com/xgqfrms/p/17246070.html

相关文章

  • fix ts-node esm error All In One
    fixts-nodeesmerrorAllInOneerror❌TypeError[ERR_UNKNOWN_FILE_EXTENSION]:Unknownfileextension".ts"ESMsolution✅"type":"module",&ts-nod......
  • 用NUnit为.NET程序做测试 --- 常用测试属性之一 SetUp TearDown TestFixtureSetUp Tes
    在前面的入门中,每个测试类运行良好。但是大家有没有发现代码的重复性太多了。每一个测试类中都是先新建一个Calculate有没有方法可以设置得简单些呢?有!NUnit中有一个属性可......
  • unity3d Update()和FixedUpdate()的区别
    从字面上理解,它们都是在更新时会被调用,并且会循环的调用。但是Update会在每次渲染新的一帧时,被调用。而FixedUpdate会在每个固定的时间间隔被调用,那......
  • Session fixation
    from: https://owasp.org/www-community/attacks/Session_fixationDescriptionSessionFixationisanattackthatpermitsanattackertohijackavalidusersessi......
  • Prefix must be in canonical form
    日志通过@ConfigurationProperties进行初始化赋值,如上图所示,idea报红线,提示前缀必须采用规范形式。这是因为prefix属性值不支持驼峰命名!!!解决方式一:prefix属性值都小写......
  • 网络系统管理Linux环境——12.AppSrv之MAIL(POSTFIX-SMTPS & DOVECOT-IMAPS)
    题目要求服务器AppSrv上的工作任务5. MAIL(POSTFIX-SMTPS&DOVECOT-IMAPS)Postfix​​​sdskill.com​​​​​的邮件发送服务器支持smtps(465)协议连接,使用Rserver颁发......
  • pytest笔记——fixture作用范围
    一、前言在使用pytest测试框架的时候,会经常使用到fixture,fixture相对灵活,能更好的实现一些用例场景的前置以及后置的操作,但在使用的过程中也经常遇到各种问题,例如我明明已......
  • ElasticSearch 实现分词全文检索 - id、ids、prefix、fuzzy、wildcard、range、regexp
    目录ElasticSearch实现分词全文检索-概述ElasticSearch实现分词全文检索-ES、Kibana、IK安装ElasticSearch实现分词全文检索-Restful基本操作ElasticSearch......
  • fixed 定位
     元素的位置相对于浏览器窗口是固定位置。即使窗口是滚动的它也不会移动:实例p.pos_fixed{position:fixed;top:30px;right:5px;}注意: Fixed定位在IE7和......
  • npm audit fix --force
    npmauditfix--forcenpmauditfix没事别去执行这个命令,依赖关系搞坏了,有你好果子吃......