Web Tools is a collection of online tools developed to make your task easier. Currently it features 5 tools including :
- md5 hash calculator
- sha1 hash calculator
- HTML to ASCII convertor
- HTML and php tags stripper
- & Base 64 encoder and decoder
The tools are developed using some pretty basic php functions , but still are of great use. The functions used are :
sha1(); //for sha1 hash calculator
md5(); //for md5 hash calculator
strip_tags(); //strips all php and html tags
htmlspecialchars(); //converts all html characters to their corresponding ASCII characters
base64_encode(); //encodes a string in base64 format
base64_decode(); //decodes a string from base64 format
md5(); //for md5 hash calculator
strip_tags(); //strips all php and html tags
htmlspecialchars(); //converts all html characters to their corresponding ASCII characters
base64_encode(); //encodes a string in base64 format
base64_decode(); //decodes a string from base64 format






