Please visit our sponsors !
The Chr Function
The Chr function converts the specified ANSI character code to a character.
Note: The numbers from 0 to 31 represents nonprintable ASCII codes,
i.e. Chr(10) will return a linefeed character.
Syntax
Parameter |
Description |
charcode |
Required. A number that identifies a character |
Example 1
document.write(Chr(65) & "<br />")
document.write(Chr(97))
Output:
A
a
|
Example 2
document.write(Chr(37) & "<br />")
document.write(Chr(45))
Output:
%
-
|
Example 3
document.write(Chr(50) & "<br />")
document.write(Chr(35))
Output:
2
#
|
Jump to: Top of Page
or HOME or
Printer friendly page
Search W3Schools:
What Others Say About Us
Does the world know about us? Check out these places:
Dogpile
Alta Vista
MSN
Google
Excite
Lycos
Yahoo
Ask Jeeves
We Help You For Free. You Can Help Us!
W3Schools is for training only. We do not warrant its correctness or its fitness for use.
The risk of using it remains entirely with the user. While using this site, you agree to have read and accepted our
terms of use and
privacy policy.
Copyright 1999-2002 by Refsnes Data. All Rights Reserved
|