Difference between revisions of "$chr"

From Scriptwiki
Jump to: navigation, search
(added link to ascii table)
m
Line 10: Line 10:
  
 
== See Also ==
 
== See Also ==
[[$asc]] returns the ascii number of a character.
+
* [[$asc]] returns the ascii number of a character.
 
 
 
 
  
 
[[Category:Text_and_Number_Identifiers]]
 
[[Category:Text_and_Number_Identifiers]]

Revision as of 11:02, 2 July 2007

Returns the character with ascii number N.

$chr(N)

To get a list of all ascii chars and ascii numbers, take a look at http://www.lookuptables.com/.

Example

echo -a $chr(65) 

This example would return the character with the ASCII-code 65. That is an 'A'.


See Also

  • $asc returns the ascii number of a character.