|
| JAVASCRIPT fromCharCode()METHOD
In javascript, the fromCharCode() converts a string from it's unicode values into a readable string.
The general format is:
String.fromCharCode(one or more unicode values separated by comma);
Example:
<script type="text/javascript">
document.write(String.fromCharCode(74, 79, 72, 78));
</script>
The above will output:
See Also:
|
|