{"id":1487,"date":"2023-02-17T04:00:26","date_gmt":"2023-02-17T04:00:26","guid":{"rendered":"https:\/\/www.tools.keywordfinder.us\/?page_id=1487"},"modified":"2023-02-17T04:00:26","modified_gmt":"2023-02-17T04:00:26","slug":"crc-16-32-hash-generator","status":"publish","type":"page","link":"https:\/\/tools.billionsideas.com\/fr\/crc-16-32-hash-generator\/","title":{"rendered":"CRC 16-32 Hash Generator"},"content":{"rendered":"<div style=\"height:70px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column has-luminous-vivid-amber-background-color has-background is-layout-flow wp-block-column-is-layout-flow\">\n<h1>CRC-16\/CRC-32 Hash Generator<\/h1>\n    <script>\n      function generateHash() {\n        let inputText = document.getElementById(\"input-text\").value;\n        let crcType = document.getElementById(\"crc-type\").value;\n        let hashOutput = document.getElementById(\"hash-output\");\n        let hash = 0;\n        let table = new Array(256);\n  \n        if(crcType === \"CRC-16\") {\n          for(let i = 0; i < 256; i++) {\n            let temp = i;\n            for(let j = 0; j < 8; j++) {\n              if((temp &#038; 1) === 1) {\n                temp = (temp >>> 1) ^ 0xA001;\n              } else {\n                temp = (temp >>> 1);\n              }\n            }\n            table[i] = temp;\n          }\n  \n          for(let i = 0; i < inputText.length; i++) {\n            hash = (hash >>> 8) ^ table[(hash ^ inputText.charCodeAt(i)) & 0xff];\n          }\n          hashOutput.value = hash.toString(16);\n        } else if(crcType === \"CRC-32\") {\n         \n          for (let i = 0; i < 256; i++) {\n            let c = i;\n            for (let j = 0; j < 8; j++) {\n              c = c &#038; 1 ? 0xEDB88320 ^ (c >>> 1) : c >>> 1;\n            }\n            table[i] = c;\n          }\n          for (let i = 0; i < inputText.length; i++) {\n            hash = table[(hash ^ inputText.charCodeAt(i)) &#038; 0xff] ^ (hash >>> 8);\n          }\n          hash = hash ^ -1;\n          hashOutput.value = hash.toString(16);\n        }\n      }\n\n      function copyToClipboard() {\n        let copyText = document.getElementById(\"hash-output\");\n        copyText.select();\n        document.execCommand(\"copy\");\n      }\n\n      function downloadHash() {\n        let data = document.getElementById(\"hash-output\").value;\n        let filename = \"Hash.txt\";\n        let type = \"text\/plain\";\n        let a = document.createElement(\"a\");\n        let file = new Blob([data], { type: type });\n        a.href = URL.createObjectURL(file);\n        a.download = filename;\n        a.click();\n      }\n    <\/script>\n <section> <br>\n    <textarea id=\"input-text\" rows=\"4\" cols=\"50\"><\/textarea>\n    <br>\n    <select id=\"crc-type\">\n      <option value=\"CRC-16\">CRC-16<\/option>\n      <option value=\"CRC-32\">CRC-32<\/option>\n    <\/select>\n    <button onclick=\"generateHash()\">Generate Hash<\/button>\n    <br>\n    <input type=\"text\" id=\"hash-output\" readonly=\"\">\n    <br>\n    <button onclick=\"copyToClipboard()\">Copy to Clipboard<\/button>\n    <button onclick=\"downloadHash()\">Download<\/button> <br> <br>\n <\/section>\n\n\n<style>\nbody {\n  text-align: center;\n  \n}\ninput[type=\"text\"] {\n  width: 50%;\n  height: 40px;margin:0 auto;\n\n  padding: 5px;\n  font-size: 16px;\n  font-family: Arial, sans-serif;\n  border: 2px solid;\n  border-image: linear-gradient(to right, #06c, #f90) 1;\n  border-radius: 5px;\n  box-shadow: 2px 2px 5px #ccc;\n  transition: all 0.2s ease-in-out;\n  margin-top:10px;margin-bottom:10px;\n}\ncanvas {\n  border: 10px solid;\n  border-image: linear-gradient(to bottom, #007bff, #00f260);\n  border-image-slice: 1;\n  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);\n  margin-top:10px;margin-bottom:10px;\n  width:50%;\n}\n\ninput[type=\"url\"] {\n  width: 80%;\n  height: 40px;\n  padding: 5px;\n  font-size: 16px;\n  font-family: Arial, sans-serif;\n  border: 2px solid;\n  border-image: linear-gradient(to right, #06c, #f90) 1;\n  border-radius: 5px;\n  box-shadow: 2px 2px 5px #ccc;\n  transition: all 0.2s ease-in-out;\n  margin-top:10px;margin-bottom:10px;\n}\ninput[type=\"number\"] {\n  width: 20%;\n  height: 40px;\n  padding: 5px;\n  font-size: 16px;\n  font-family: Arial, sans-serif;\n  border: 2px solid;\n  border-image: linear-gradient(to right, #06c, #f90) 1;\n  border-radius: 5px;\n  box-shadow: 2px 2px 5px #ccc;\n  transition: all 0.2s ease-in-out;\n  margin-top:10px;margin-bottom:10px;\n}\nselect {\n  width: 12%;\n  height: 40px;margin:0 auto;\n\n  padding: 5px;\n  font-size: 16px;\n  font-family: Arial, sans-serif;\n  border: 2px solid;\n  border-image: linear-gradient(to right, #06c, #f90) 1;\n  border-radius: 5px;\n  box-shadow: 2px 2px 5px #ccc;\n  transition: all 0.2s ease-in-out;\n  margin-top:10px;margin-bottom:10px;\n}\n\n\ntextarea {\n  width: 50%;\n  height: 70px;margin:0 auto;\n\n  padding: 10px;\n  font-size: 16px;\n  font-family: Arial, sans-serif;\n  border: 2px solid;\n  border-image: linear-gradient(to right, #06c, #f90) 1;\n  border-radius: 5px;\n  box-shadow: 2px 2px 5px #ccc, -2px -2px 5px #ccc;  \n  transition: all 0.2s ease-in-out;\n  margin-top:10px;margin-bottom:10px;\n}\n\ntextarea:hover {\n  border-color: #06c;\n  box-shadow: 2px 2px 10px #06c;\n}\n\ntextarea:focus {\n  outline: none;\n  border-color: #06c;\n  box-shadow: 2px 2px 10px #06c;\n}\n#image-container {\n  width: 50%;\n  height: auto;\n  border-radius: 10px;\n  box-shadow: 1px 1px 5px #999;\n  border: 3px solid;\n  border-image: linear-gradient(to right, #f60, #f9c);\n  margin-top:10px;margin-bottom:10px;\n  border-image-slice: 1;\n  padding:15px;margin:0 auto;\n}\n\n#image-container img {\n  max-width: 100%;\n  }\n\n#convertedImage {\n  width: 50%;\n  height: auto;\n  border-radius: 10px;\n  box-shadow: 1px 1px 5px #999;\n  border: 5px solid;\n  border-image: linear-gradient(to right, #f60, #f9c);\n  margin-top:10px;margin-bottom:10px;\n  border-image-slice: 1;padding:11px;\n}\n.img {\n  width: 50%;\n  height: auto;\n  border-radius: 10px;\n  box-shadow: 1px 1px 5px #999;\n  border: 5px solid;\n  border-image: linear-gradient(to right, #f60, #f9c);\n  margin-top:10px;margin-bottom:10px;\n  border-image-slice: 1;padding:11px;\n}\n.image {\n  width: 50%;\n  height: auto;\n  border-radius: 10px;\n  box-shadow: 1px 1px 5px #999;\n  border: 5px solid;\n  border-image: linear-gradient(to right, #f60, #f9c);\n  margin-top:10px;margin-bottom:10px;\n  border-image-slice: 1;padding:11px;\n}\n#image {\n  width: 50%;\n  height: auto;\n  border-radius: 10px;\n  box-shadow: 1px 1px 5px #999;\n  border: 5px solid;\n  border-image: linear-gradient(to right, #f60, #f9c);\n  margin-top:10px;margin-bottom:10px;\n  border-image-slice: 1;padding:11px;\n}\n#file-input {\n  display: none;\n}\n\ninput[type=file]::file-selector-button {\n  background: #fc00c7;\n    background: -moz-linear-gradient(-45deg, #fc00c7 0%, #008B8B 54%, #55555e 100%);\n    background: -webkit-linear-gradient(-45deg, #fc00c7 0%,#008B8B 54%,#55555e 100%);\n    background: linear-gradient(135deg, #fc00c7 0%,##008B8B 54%,#55555e 100%);\n}\n\n\ninput[type=file]::file-selector-button {font-size: 16px;\n    font-weight: 500;\n    font-family: 'Poppins', sans-serif;\n    padding: 6px 50px;\n    line-height: 50px;\n    text-align: center;\n    outline: none;\n    cursor: pointer;\n    color: #fff;\n    background-color: #ffff00;\n    -webkit-border-radius: 20%;\n    border-radius: 20%;\n    display: inline-block;\n    position: relative;\n    -webkit-box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    text-shadow: 2px 2px 4px #333;\n    border: 5px solid;\n    border-image: linear-gradient(to right, #ff7f00, ,#0033cc, #55555e, #ffa600);\n    border-image-slice: 1;\n    font-size: 18px;\n    margin-top:20px;width:100%;margin-bottom:20px;\n}\n\n\n\n\n\ninput[type=file]::file-selector-button:hover\n {\n  background: #0033cc;border-radius:100px;border:0px solid #55555e;padding: 7px 50px;\n\n    background: -moz-linear-gradient(-45deg, #00aded 0%, #ff7f00 54%, #1c4efd 100%);\n    background: -webkit-linear-gradient(-45deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n    background: linear-gradient(135deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n}\n\n\n\n@keyframes pulse {\n  0% {\n    background-position: left;\n  }\n  50% {\n    background-position: right;\n  }\n  100% {\n    background-position: left;\n  }\n}\n\ninput[type=file]::file-selector-button:active {\n  animation: pulse 1s ease-out infinite;\n  border-color: #000;border-radius:20%;\n}\n\n#downloadLink {\n  background: #fc00c7;\n    background: -moz-linear-gradient(-45deg, #fc00c7 0%, #1c4efd 54%, #00aded 100%);\n    background: -webkit-linear-gradient(-45deg, #fc00c7 0%,#1c4efd 54%,#00aded 100%);\n    background: linear-gradient(135deg, #fc00c7 0%,#1c4efd 54%,#00aded 100%);\n}\n\n\n#downloadLink {font-size: 16px;\n    font-weight: 500;\n    font-family: 'Poppins', sans-serif;\n    padding: 0px 50px;\n    line-height: 50px;\n    text-align: center;\n    outline: none;\n    cursor: pointer;\n    color: #fff;\n    background-color: #000;\n    -webkit-border-radius: 20%;\n    border-radius: 20%;\n    display: inline-block;\n    position: relative;\n    -webkit-box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    text-shadow: 2px 2px 4px #333;\n    border-bottom: 2px solid #ff7f00;\n    border-image: linear-gradient(to right, #ff7f00, #ffa600);\n    border-image-slice: 1;\n    font-size: 18px;\n    margin-top:15px;margin-bottom:15px;width:300px;\n}\n\n#downloadLink:hover\n {\n  background: #0033cc;\n    background: -moz-linear-gradient(-45deg, #00aded 0%, #ff7f00 54%, #1c4efd 100%);\n    background: -webkit-linear-gradient(-45deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n    background: linear-gradient(135deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n}\n\n#downloadLink:active {\n  animation: pulse 1s ease-out infinite;\n  border-color: #000;background:#000;\n}\n\n\n\n#button {\n  background: #fc00c7;\n    background: -moz-linear-gradient(-45deg, #fc00c7 0%, #1c4efd 54%, #00aded 100%);\n    background: -webkit-linear-gradient(-45deg, #fc00c7 0%,#1c4efd 54%,#00aded 100%);\n    background: linear-gradient(135deg, #fc00c7 0%,#1c4efd 54%,#00aded 100%);\n}\n\n\n#button {font-size: 16px;\n    font-weight: 500;\n    font-family: 'Poppins', sans-serif;\n    padding: 0px 50px;\n    line-height: 50px;\n    text-align: center;\n    outline: none;\n    cursor: pointer;\n    color: #fff;\n    background-color: #000;\n    -webkit-border-radius: 20%;\n    border-radius: 20%;\n    display: inline-block;\n    position: relative;\n    -webkit-box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    text-shadow: 2px 2px 4px #333;\n    border-bottom: 2px solid #ff7f00;\n    border-image: linear-gradient(to right, #ff7f00, #ffa600);\n    border-image-slice: 1;\n    font-size: 18px;\n   \n}\n\n#button:hover\n {\n  background: #0033cc;\n    background: -moz-linear-gradient(-45deg, #00aded 0%, #ff7f00 54%, #1c4efd 100%);\n    background: -webkit-linear-gradient(-45deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n    background: linear-gradient(135deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n}\n\n#button:active {\n  animation: pulse 1s ease-out infinite;\n  border-color: #000;background:#000;\n}\n\n\n.button {\n  background: #fc00c7;\n    background: -moz-linear-gradient(-45deg, #fc00c7 0%, #1c4efd 54%, #00aded 100%);\n    background: -webkit-linear-gradient(-45deg, #fc00c7 0%,#1c4efd 54%,#00aded 100%);\n    background: linear-gradient(135deg, #fc00c7 0%,#1c4efd 54%,#00aded 100%);\n}\n\n\n.button {font-size: 16px;\n    font-weight: 500;\n    font-family: 'Poppins', sans-serif;\n    padding: 0px 50px;\n    line-height: 50px;\n    text-align: center;\n    outline: none;\n    cursor: pointer;\n    color: #fff;\n    background-color: #000;\n    -webkit-border-radius: 20%;\n    border-radius: 20%;\n    display: inline-block;\n    position: relative;\n    -webkit-box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    text-shadow: 2px 2px 4px #333;\n    border-bottom: 2px solid #ff7f00;\n    border-image: linear-gradient(to right, #ff7f00, #ffa600);\n    border-image-slice: 1;\n    font-size: 18px;\n   \n}\n\n.button:hover\n {\n  background: #0033cc;\n    background: -moz-linear-gradient(-45deg, #00aded 0%, #ff7f00 54%, #1c4efd 100%);\n    background: -webkit-linear-gradient(-45deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n    background: linear-gradient(135deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n}\n\n.button:active {\n  animation: pulse 1s ease-out infinite;\n  border-color: #000;background:#000;\n}\n\n\n\nbutton {\n  background: #fc00c7;\n    background: -moz-linear-gradient(-45deg, #fc00c7 0%, #1c4efd 54%, #00aded 100%);\n    background: -webkit-linear-gradient(-45deg, #fc00c7 0%,#1c4efd 54%,#00aded 100%);\n    background: linear-gradient(135deg, #fc00c7 0%,#1c4efd 54%,#00aded 100%);\n}\n\n\nbutton {font-size: 16px;\n    font-weight: 500;\n    font-family: 'Poppins', sans-serif;\n    padding: 0px 20px;\n    line-height: 36px;\n    text-align: center;\n    outline: none;\n    cursor: pointer;\n    color: #fff;\n    background-color: #000;\n    -webkit-border-radius: 0%;\n    border-radius: 0%;\n    display: inline-block;\n    position: relative;\n    -webkit-box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    text-shadow: 2px 2px 4px #333;\n        font-size: 18px;\n   \n}\n\nbutton:hover\n {\n  background: #0033cc;\n    background: -moz-linear-gradient(-45deg, #00aded 0%, #ff7f00 54%, #1c4efd 100%);\n    background: -webkit-linear-gradient(-45deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n    background: linear-gradient(135deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n}\n\nbutton:active {\n  animation: pulse 1s ease-out infinite;\n  border-color: #000;background:#000;\n}\n\n\n\n#btn {\n  background: #fc00c7;\n    background: -moz-linear-gradient(-45deg, #fc00c7 0%, #1c4efd 54%, #00aded 100%);\n    background: -webkit-linear-gradient(-45deg, #fc00c7 0%,#1c4efd 54%,#00aded 100%);\n    background: linear-gradient(135deg, #fc00c7 0%,#1c4efd 54%,#00aded 100%);\n}\n\n\n#btn {font-size: 16px;\n    font-weight: 500;\n    font-family: 'Poppins', sans-serif;\n    padding: 0px 50px;\n    line-height: 50px;\n    text-align: center;\n    outline: none;\n    cursor: pointer;\n    color: #fff;\n    background-color: #000;\n    -webkit-border-radius: 20%;\n    border-radius: 20%;\n    display: inline-block;\n    position: relative;\n    -webkit-box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    text-shadow: 2px 2px 4px #333;\n    border-bottom: 2px solid #ff7f00;\n    border-image: linear-gradient(to right, #ff7f00, #ffa600);\n    border-image-slice: 1;\n    font-size: 18px;\n   \n}\n\n#btn:hover\n {\n  background: #0033cc;\n    background: -moz-linear-gradient(-45deg, #00aded 0%, #ff7f00 54%, #1c4efd 100%);\n    background: -webkit-linear-gradient(-45deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n    background: linear-gradient(135deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n}\n\n#btn:active {\n  animation: pulse 1s ease-out infinite;\n  border-color: #000;background:#000;\n}\n\n\n\n.btn {\n  background: #fc00c7;\n    background: -moz-linear-gradient(-45deg, #fc00c7 0%, #1c4efd 54%, #00aded 100%);\n    background: -webkit-linear-gradient(-45deg, #fc00c7 0%,#1c4efd 54%,#00aded 100%);\n    background: linear-gradient(135deg, #fc00c7 0%,#1c4efd 54%,#00aded 100%);\n}\n\n\n.btn {font-size: 16px;\n    font-weight: 500;\n    font-family: 'Poppins', sans-serif;\n    padding: 0px 50px;\n    line-height: 50px;\n    text-align: center;\n    outline: none;\n    cursor: pointer;\n    color: #fff;\n    background-color: #000;\n    -webkit-border-radius: 20%;\n    border-radius: 20%;\n    display: inline-block;\n    position: relative;\n    -webkit-box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    text-shadow: 2px 2px 4px #333;\n    border-bottom: 2px solid #ff7f00;\n    border-image: linear-gradient(to right, #ff7f00, #ffa600);\n    border-image-slice: 1;\n    font-size: 18px;\n   \n}\n\n.btn:hover\n {\n  background: #0033cc;\n    background: -moz-linear-gradient(-45deg, #00aded 0%, #ff7f00 54%, #1c4efd 100%);\n    background: -webkit-linear-gradient(-45deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n    background: linear-gradient(135deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n}\n\n.btn:active {\n  animation: pulse 1s ease-out infinite;\n  border-color: #000;background:#000;\n}\n\n\n#button-copy {\n  background: #fc00c7;\n    background: -moz-linear-gradient(-45deg, #fc00c7 0%, #1c4efd 54%, #00aded 100%);\n    background: -webkit-linear-gradient(-45deg, #fc00c7 0%,#1c4efd 54%,#00aded 100%);\n    background: linear-gradient(135deg, #fc00c7 0%,#1c4efd 54%,#00aded 100%);\n}\n\n\n#button-copy {font-size: 16px;\n    font-weight: 500;\n    font-family: 'Poppins', sans-serif;\n    padding: 0px 50px;\n    line-height: 50px;\n    text-align: center;\n    outline: none;\n    cursor: pointer;\n    color: #fff;\n    background-color: #000;\n    -webkit-border-radius: 20%;\n    border-radius: 20%;\n    display: inline-block;\n    position: relative;\n    -webkit-box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    text-shadow: 2px 2px 4px #333;\n    border-bottom: 2px solid #ff7f00;\n    border-image: linear-gradient(to right, #ff7f00, #ffa600);\n    border-image-slice: 1;\n    font-size: 18px;\n   \n}\n\n#button-copy:hover\n {\n  background: #0033cc;\n    background: -moz-linear-gradient(-45deg, #00aded 0%, #ff7f00 54%, #1c4efd 100%);\n    background: -webkit-linear-gradient(-45deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n    background: linear-gradient(135deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n}\n\n#button-copy:active {\n  animation: pulse 1s ease-out infinite;\n  border-color: #000;background:#000;\n}\n\n#copy-button {\n  background: #fc00c7;\n    background: -moz-linear-gradient(-45deg, #fc00c7 0%, #1c4efd 54%, #00aded 100%);\n    background: -webkit-linear-gradient(-45deg, #fc00c7 0%,#1c4efd 54%,#00aded 100%);\n    background: linear-gradient(135deg, #fc00c7 0%,#1c4efd 54%,#00aded 100%);\n}\n\n\n#copy-button {font-size: 16px;\n    font-weight: 500;\n    font-family: 'Poppins', sans-serif;\n    padding: 0px 50px;\n    line-height: 50px;\n    text-align: center;\n    outline: none;\n    cursor: pointer;\n    color: #fff;\n    background-color: #000;\n    -webkit-border-radius: 20%;\n    border-radius: 20%;\n    display: inline-block;\n    position: relative;\n    -webkit-box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    text-shadow: 2px 2px 4px #333;\n    border-bottom: 2px solid #ff7f00;\n    border-image: linear-gradient(to right, #ff7f00, #ffa600);\n    border-image-slice: 1;\n    font-size: 18px;\n   \n}\n\n#copy-button:hover\n {\n  background: #0033cc;\n    background: -moz-linear-gradient(-45deg, #00aded 0%, #ff7f00 54%, #1c4efd 100%);\n    background: -webkit-linear-gradient(-45deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n    background: linear-gradient(135deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n}\n\n#copy-button:active {\n  animation: pulse 1s ease-out infinite;\n  border-color: #000;background:#000;\n}\n\npre {\n  width: 80%;\n  margin: 0 auto;\n  text-align: left;\n  padding: 1em;\n  background-color: #f5f5f5;\n  border-radius: 10px;\n  box-shadow: 1px 1px 5px #999;\n  overflow-x: auto;\n  white-space: pre-wrap;\n  margin-top:10px;margin-bottom:10px;\n\n}\ncode {\n  font-family: Monaco, Consolas, \"Andale Mono\", \"DejaVu Sans Mono\", monospace;\n  font-size: 0.9em;\n  color: #333;\n  background-color: #f9f9f9;\n  padding: 0.2em 0.4em;\n  border-radius: 4px;\n}\n.result {\n  margin: 20px 0;\n  padding: 20px;\n  background-color: #f9f9f9;\n  border-radius: 10px;\n  box-shadow: 1px 1px 5px #999;\n  width:80%;\n  margin:0 auto;\n}\n\ninput[type=\"range\"] {\n  -webkit-appearance: none;\n  width: 80%;\n  background: transparent;\n  height: 10px;\n  border-radius: 5px;\n  outline: none;\n  padding: 0;\n  margin: 0;\n  box-shadow: inset 0 0 5px #333;\n  transition: box-shadow 0.2s;\n  margin-top:10px;\n\n}\n\ninput[type=\"range\"]:focus {\n  box-shadow: inset 0 0 5px #888;\n}\n\ninput[type=\"range\"]::-webkit-slider-thumb {\n  -webkit-appearance: none;\n  height: 20px;\n  width: 20px;\n  border-radius: 50%;\n  background: #4CAF50;\n  cursor: pointer;\n  transition: background 0.2s;\n  margin-top:-5px;\n}\n\ninput[type=\"range\"]::-webkit-slider-thumb:hover {\n  background: #3e8e41;\n}\n\ninput[type=\"range\"]::-webkit-slider-runnable-track {\n  height: 10px;\n  background: #ddd;\n  border-radius: 5px;\n  border: none;\n}\ninput[type=\"checkbox\"] {\n  appearance: none;\n  width: 45px;\n  height: 25px;\n  background: transparent;\n  border: 2px solid;\n  border-image: linear-gradient(to right, #06c, #f90) 1;  border-radius: 5px;\n  margin: 10px;\n  outline: none;\n  cursor: pointer;\n  position: relative;\n}\n\ninput[type=\"checkbox\"]:before {\n  content: \"\";\n  width: 15px;\n  height: 15px;\n  background: #D209A4;\n  border-radius: 100px;\n  position: absolute;\n  left: 2px;\n  \n  top: 3px;\n  transition: all 0.2s;\n}\n\ninput[type=\"checkbox\"]:checked:before {\n  transform: translateX(20px);\n}\n\ninput[type=\"checkbox\"]:focus {\n  border: 2px solid #888;\n}\ninput[type=\"radio\"] {\n  appearance: none;\n  width: 20px;\n  height: 20px;\n  border-radius: 50%;\n  border: 2px solid #333;\n  margin-right: 10px;\n  outline: none;\n  position: relative;\n  cursor: pointer;\n}\n\ninput[type=\"radio\"]:after {\n  content: \"\";\n  width: 10px;\n  height: 10px;\n  border-radius: 50%;\n  background: #333;\n  position: absolute;\n  top: 5px;\n  left: 5px;\n  opacity: 0;\n  transition: all 0.2s;\n}\n\ninput[type=\"radio\"]:checked:after {\n  opacity: 1;\n}\n\ninput[type=\"radio\"]:focus {\n  border-color: #888;\n}\n\n\ninput[type=\"radio\"] {\n  display: inline-block;\n  margin-right: 10px;\n  vertical-align: middle;\n}\nsection {\n      \n      \n      align-items: center;\n      background: #f2f2f2;\n      padding: 0px;\n      border-radius: 0px;margin-bottom:3px;\n    }\n\nh1 {\n  margin-top: 5px;color:#fff;font-family: 'Space Grotesk', sans-serif;font-size:40px;font-weight:500;\n}\nlabel {\n  display: inline-block;\n  font-size: 14px;\n  margin-right: 20px;\n  vertical-align: middle;\n}\n<\/style>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>CRC-16\/CRC-32 Hash Generator CRC-16CRC-32 Generate Hash Copy to Clipboard Download<\/p>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_kad_blocks_custom_css":"","_kad_blocks_head_custom_js":"","_kad_blocks_body_custom_js":"","_kad_blocks_footer_custom_js":"","footnotes":""},"class_list":["post-1487","page","type-page","status-publish"],"taxonomy_info":[],"featured_image_src_large":false,"author_info":{"display_name":"Billions Ideas","author_link":"https:\/\/tools.billionsideas.com\/fr\/author\/loginbillionsideas-com\/"},"comment_info":0,"jetpack-related-posts":[],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/tools.billionsideas.com\/fr\/wp-json\/wp\/v2\/pages\/1487","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tools.billionsideas.com\/fr\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/tools.billionsideas.com\/fr\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/tools.billionsideas.com\/fr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/tools.billionsideas.com\/fr\/wp-json\/wp\/v2\/comments?post=1487"}],"version-history":[{"count":0,"href":"https:\/\/tools.billionsideas.com\/fr\/wp-json\/wp\/v2\/pages\/1487\/revisions"}],"wp:attachment":[{"href":"https:\/\/tools.billionsideas.com\/fr\/wp-json\/wp\/v2\/media?parent=1487"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}