Integer ASCII value to character in BASH using printf - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T23:23:21Zhttp://stackoverflow.com/feeds/question/890262http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/890262/integer-ascii-value-to-character-in-bash-using-printf0Integer ASCII value to character in BASH using printfKent2009-05-20T21:07:56Z2009-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#8902800Answer by mouviciel for Integer ASCII value to character in BASH using printfmouviciel2009-05-20T21:12:31Z2009-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#8903055Answer by seb for Integer ASCII value to character in BASH using printfseb2009-05-20T21:18:04Z2009-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#8903221Answer by Naaff for Integer ASCII value to character in BASH using printfNaaff2009-05-20T21:21:32Z2009-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#17549310Answer by broaden for Integer ASCII value to character in BASH using printfbroaden2009-11-18T10:10:40Z2009-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>