Skip to main content

Url Encoder And Decoder Tool


Hey guys welcome to the blogs of Tech Era,So today we are back with a stunning script in blogger which will Encode and Decode the Url Link.As we know today fraud has increased due to fake link,this tool will analysis the link.If you found the link is correct then use the link otherwise not.This tool is very helpful to you as to save you from fraud.

As we are using whatsapp,facebook,instagram..etc,these types of app then there is a chance that you may receive a link from an unknown source,if this happens then decode the link from this tool and safe ourself from being fraud

So here in this blog we will learn how to setup a website which will Encode and Decode URL. After completing website setup it is necessary to do the SEO setting,as seo will help you website to rank.

So below are the steps for setuping site in blogger, follow them and start Earning from your tool site.
Click On The Below Links To Learn How To Do Them
https://youtu.be/vOtVtWUUU1g


Do The Following Steps For Making Website In Blogger For URL / Link Encoding And Decoding :

Step 1: First of all go to your Blogger Dashboard.

Step 2: Go to Themes,then scroll down and select Simple Theme template,then click on down arrow and select Mobile Setting then click on Desktop and click Save after then select Switch To First Generation Classic Theme, and then select Switch Without Backup and then again click on down arrow and select Change Navbar option and again a drop down arrow will come then select option Off click on Save.

Step 3: Then Click on edit Html and select the entire code and delete it,after deleting the complete code,Copy the below code and then click on Save.

<center>
  <hr color="#fff" noshade="" size="1" style="background-color:
#0030ce; border-style: dotted; border-width: 3px; color: lime;" />
  <!-- Template is editted by Sudarshan Pandey-->
  <!--Tool is Copyright free-->
  <!-- By Tech Era Youtube Channel-->
  <br />
   <nav class="navbar navbar-default">
   
   
    <!-- Button to Open the Contact Page Modal -->
   
    <div><button type="button" class="btn btn-primary" style="float:right; margin:4px"
data-toggle="modal" data-target="#about-page">
  About Free Tool
  </button></div>

  </div>
</nav>

                 
<style id='page-skin-1' type='text/css'>

button {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 12px 28px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}

</style>
<link href='https://fonts.googleapis.com/css?family=Oswald'
rel='stylesheet' type='text/css'>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js">
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js">
</script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js">
</script>
 
  <!-- *********** SUDARSHAN PANDEY ********** -->

<!-- About page Modal -->
  <!-- ****** FUlly Customize By Sudarshan Pandey Creator
Of Tech Era You Tube Channel ********* -->
<!-- The Modal -->
<div class="modal" id="about-page">
  <div class="modal-dialog modal-lg">
    <div class="modal-content">

      <!-- Modal Header -->
      <div class="modal-header">
        <h3 class="modal-title"></h3>
        <!--<button type="button" class="close" data-dismiss="modal">
&times;</button>-->
      </div>

      <!-- Modal body -->
      <div class="modal-body">
        <br>
        <h1 style="color:red;">URL Encode Decode Online Tool</h1>
        <p><b>URL Encode Decode Tool is an online free tool for encode decode URLs,
Our URL Encode Decode Tool is very easy to use and always free, by using our URL
Encode Decode Tool you can easily encode and decode URLs in one click, URL Encode
Decode is the practice of encoding information in a Uniform Resource Locator (URL)
in a way that is not normally used, typically to enable the use of characters in a
URL that is not supported in the character set being used on the webpage or are
disallowed for security reasons.  URL Encode Decode is also sometimes referred to
as percent-encoding.URL Encode Decode Online Tool will encode and decode a string.
The encoding converts the string to a format where it can be transmitted safely,
moving it away from being a string that could be interpreted as a command.
URL Encode Decode Online Tool will also convert the string to a format that can be
stored safely, moving it away from being a string that could be interpreted as data
by a program or user. Some characters are encoded differently depending on the
context in which they appear.
</b></p>

      </div>

      <!-- Modal footer -->
      <div class="modal-footer">
        <button type="button" class="btn btn-danger" data-dismiss="modal">
Close</button>
      </div>

    </div>
  </div>
</div>
<!-- End About page Modal-->

  <h1><br>URL Encode Tool Online</h1>

<textarea cols="60" id="encodeTxt" rows="3"></textarea><br /><br />
<button button="" onclick="urlencodeTxt()"
style="-webkit-transition-duration: 0.4s;
background: rgb(255, 0, 0); border-radius: 30px; border: 5px groove rgb(0, 48, 206);
color: white; cursor: pointer; font-size: 16px; overflow: hidden; padding: 10px 25px;
position: relative; text-align: center; text-decoration: none;
transition-duration: 0.4s; width: 270px;"> <b>CLICK TO ENCODE URL</b> </button>
  <br /><br />
<textarea cols="60" id="encodeResult" rows="3"></textarea>
<br />
 <style>
textarea {
  width: 50%;
  height: 70px;
  padding: 12px 20px;
  box-sizing: border-box;
  border: 7px groove #0030CE;
  border-radius: 14px;
  background-color: #f8f8f8;
  font-size: 18px;
  resize: none;
}
</style>


 
 

<script>
  function urlencodeTxt() {
  var urlEncodeTxt = document.getElementById("encodeTxt").value;
  var resEncode = encodeURIComponent(urlEncodeTxt);
  document.getElementById("encodeResult").value = resEncode;
}

  </script>
  <br />
<hr color="#fff" noshade="" size="1" style="background-color: #0030ce;
border-style: dotted; border-width: 3px; color: lime;" />
<h1>URL Decode Online Tool</h1>
<textarea cols="60" id="decodeTxt" rows="3"></textarea><br /><br />
<button button="" onclick="urldecodeTxt()" style="-webkit-transition-duration: 0.4s;
background: rgb(255, 0, 0); border-radius: 30px; border: 5px groove rgb(0, 48, 206);
color: white; cursor: pointer; font-size: 16px; overflow: hidden; padding: 10px 25px;
position: relative; text-align: center; text-decoration: none;
transition-duration: 0.4s; width: 270px;"> <b>CLICK TO DECODE URL</b>
</button><br /><br />
<textarea cols="60" id="decodeResult" rows="3"></textarea>
<br />

<script>
  function urldecodeTxt() {
  var urlDecodeTxt = document.getElementById("decodeTxt").value;
  var resDecode = decodeURIComponent(urlDecodeTxt);
  document.getElementById("decodeResult").value = resDecode;
}
  </script>
<br />
<hr color="#fff" noshade="" size="1" style="background-color: #0030ce; border-style:
dotted; border-width: 3px; color: lime;" />

<br /> <b>Copyright Free Tool <a href="https://techeray.blogspot.com/"
target="_blank">Tech Era</a> | Sudarshan Pandey</b>
</center>

Step 4: Now your website is successfully completed,after ward when traffic is comming to your site the purchase a custom domain,then your site will look as professional and add some pages in yours site and If you get adsense approval,then you can start your earning by adding ads.
 
See Live Website -: CLICK HERE

Watch The Video Tutorial











Comments

Post a Comment

Please Do Not Enter Any Spam Link.