Online Conversion Tool

This is a really simple Javascript based conversion tool. 

It can help you for :

  • SQL Injection
    • MS SQL Char
      "foo" will be "SELECT CHAR(102)+CHAR(111)+CHAR(111)"
    • MySQL CONCAT
      "foo" > "SELECT CONCAT(CHAR(102),CHAR(111),CHAR(111))"
    • MySQL Hex
      "foo" > "SELECT 0x666f6f"
  • XSS
    • String.fromCharCode()
      "foo" > "String.fromCharCode(102,111,111)"
  • Hashing
    • MD4
    • MD5
    • SHA-1
    • SHA256
  • Encoding
    • Base64
    • URL
    • JS Escape
    • HTML UTF-8
  • Decoding
    • Base64
    • URL
    • JS Escape

Also optionally output can be URL encoded.