Found a method to ASCII to character and vice versa in unix and thought of sharing it.
Below is the code.
## Character to ASCII
printf "%d\n" "'A"
## ASCII number to character
awk -v char=65 'BEGIN { printf "%c\n", char; exit }'
This is the blog dedicated to Oracle Applications users. Here I will be posting information on Oracle Application which will have technical, functional and Administration related topics. Although the site may be more beneficial to technial junkies.
Please remember to visit site regularly as it will be updated quite often and do remember to encourage me by posting your valuable comments.
Thanks,
Suresh Vaishya
Found a method to ASCII to character and vice versa in unix and thought of sharing it.
Below is the code.
## Character to ASCII
printf "%d\n" "'A"
## ASCII number to character
awk -v char=65 'BEGIN { printf "%c\n", char; exit }'
Copyright (c) All rights reserved. Presented by Suresh Vaishya
1 Comment:
Dear Suresh,
How do we attach a request group to a responsibility using back end?
Thanks and Regards,
Venkat
Post a Comment