View gist:f5e2c65bdce73f385578d48af8ca64cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let x='8d76008d45b8897db8894424088b45d48944'.toUpperCase(); let res= ''; for(let i=0; i< x.length; i=i+2) { res += '\\x'+x[i]+x[i+1];} console.log(res); |