Integer ASCII value to character in BASH using printf - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T23:23:21Z http://stackoverflow.com/feeds/question/890262 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/890262/integer-ascii-value-to-character-in-bash-using-printf 0 Integer ASCII value to character in BASH using printf Kent 2009-05-20T21:07:56Z 2009-11-18T10:10:40Z <p>Character to value works:</p> <pre><code>$ printf "%d\n" \'A 65 $ </code></pre> <p>I have two questions, the first one is most important:</p> <ul> <li>How do I take 65 and turn it into A?</li> <li>\'A converts an ASCII character to its value using printf. Is the syntax <em>specific</em> to <em>printf</em> or is it used anywhere else in BASH? (Such small strings are hard to Google for.)</li> </ul> http://stackoverflow.com/questions/890262/integer-ascii-value-to-character-in-bash-using-printf/890280#890280 0 Answer by mouviciel for Integer ASCII value to character in BASH using printf mouviciel 2009-05-20T21:12:31Z 2009-05-20T21:12:31Z <p>For this kind of conversion, I use perl:</p> <pre><code>perl -e 'printf "%c\n", 65;' </code></pre> http://stackoverflow.com/questions/890262/integer-ascii-value-to-character-in-bash-using-printf/890305#890305 5 Answer by seb for Integer ASCII value to character in BASH using printf seb 2009-05-20T21:18:04Z 2009-05-20T21:18:04Z <p><a href="http://wooledge.org:8000/BashFAQ/071" rel="nofollow">http://wooledge.org:8000/BashFAQ/071</a></p> http://stackoverflow.com/questions/890262/integer-ascii-value-to-character-in-bash-using-printf/890322#890322 1 Answer by Naaff for Integer ASCII value to character in BASH using printf Naaff 2009-05-20T21:21:32Z 2009-05-20T21:21:32Z <p>One option is to directly input the character you're interested in using hex or octal notation:</p> <pre><code>printf "\x41\n" printf "\101\n" </code></pre> http://stackoverflow.com/questions/890262/integer-ascii-value-to-character-in-bash-using-printf/1754931#1754931 0 Answer by broaden for Integer ASCII value to character in BASH using printf broaden 2009-11-18T10:10:40Z 2009-11-18T10:10:40Z <p>printf %x 65 => print hex value from decimal = 41</p> <p>printf "\x$(printf %x 65) => print character from hex value from decimal = A</p>