Created
April 27, 2014 13:15
-
-
Save 1000copy/11345332 to your computer and use it in GitHub Desktop.
cyrillic char c
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html> | |
| <body> | |
| <p id="demo">Click the button to decode a URI after encoding it.</p> | |
| <button onclick="myFunction()">Try it</button> | |
| <script> | |
| function myFunction() | |
| { | |
| var dec = decodeURI("%d1%81"); | |
| var res = "Decoded URI: " + dec; | |
| document.getElementById("demo").innerHTML=res; | |
| } | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment