get the hex code of character using ue

get the hex code of character using ue

keyword: ue,hex,transform

    ____   _____ ______________     ____    ____  ______
   / _  | / ___// ____/  _/  _/    / _  |  / __ \/_  __/
  / /_| | \__ \/ /    / / / /     / /_| | / /_/ / / /  
 / /__| | __/ / /___ / / / /     / /__| |/ / / / / /
/_/   |_/____/\____/___/___/    /_/   |_/_/ |_| /_/

"Oldskool" or "Amiga" style

                          o$ $o
.o$$$$o. .o$$$$o .s$$$$$o.' `".o$$$$$o..o$$$$$o.o$$$$$o.
  .o  `$.$$'   . o$   $"'.o $$   .o  `$. .o  `$$  $$
.o$$.o$$$`"$$$o. $$   .  $$ $$ .o$$.o$$$ $$"o$"   $$
  $$   $$    `$$ $$.  $o.$$ $$   $$   $$ $$  $$.  $$
  $'   $'.o$$$$' `$$$$$$o.' $$   $'   $' $$  $$$" `$
                      $'    $'               $"
"Newskool" style

         ▄             ▄█▄ █▄       ▄
     ▄█▀█▓ ▄▓▀▀█▀ ▀▀▀█▓▀▀ ▀▀    ▄█▀█▓▀▀▀▀▀▓▄▀██▀▀
    ██  ██ ▀██▄▄ ▄█  ▀ ░▒ ░▒   ██  ██ ▄█▄ █▀ ██
    █▓▄▀██  ▄ ▀█▌▓█    ▒▓ ▒▓   █▓▄▀██ ▓█ ▀▄  █▓
    █▒  █▓ ██▄▓▀ ▀█▄▄█▄▓█ ▓█   █▒  █▓ ▒█  ▓█▄ ▒
        ▀▒           ▀  ▀ █▀       ▀▒  ▀  █▀  ░
"Block" or "High ASCII" style

 

ASCII stands for American Standard Code for Information Interchange.
 Computers can only understand numbers,
so an ASCII code is the numerical representation of a character
such as 'a' or '@' or an action of some sort.
 ASCII was developed a long time ago and now the non-printing characters
are rarely used for their original purpose.
as a developer ,
sometimes you may want to get ascii code of a character.
suppose you are using Ultraedit (UE),
AND NOW you want to get the hex code of the 'TABLE' character,

there is a easy way to get it:

1. open a new page
2. type tab on your keyboard
3. try ctrl + h
4. a code in hex appear: right , '09' it is the code you see.
5.so we can express TABLE as 0x09 in hex of ascii.

you can get some unprintable characters by using this way.

such as space and so on .