Hex Encryptor

This Hexadecimal(just "Hex") Encryptor encrypts your string into hex hash.

How it works?

  • At first, You give the word, letter and word separator.

  • Then, every letter from word have been translated into it's alphabetic position, ex: a - 1, b - 2, z - 26

  • Those letter positions will be converted into HEX value,
    ex: 1 = 0001, 2 = 0002, 26 = 001A

  • After this, converted values will be appended to result with separators.
    ex: aa bb = 0001[letter separator]0001[word separator]0002[letter separator]0002

Getting Started

Just open ```HexEncrypt.exe``` there