| ||||||||||||||||||||
|
|
To view any alphanumeric char (a ÷ z) (A ÷ Z) (0 ÷ 9) and many others just digit them in Notepad > save as extension.php or ...html > upload to your server and make an http-request.
But not all the chars are prompted from your PC-keyboard for example ÷ , the symbol from-to (from 1 to 5) [1÷5] , it's not available on my keyboard, neverthless I could let you read it ...I just typed in the source code : ÷ which is its ASCII value
The euro symbol is another example : [€] Some chars have particular properties such as "<" & ">" ... in particular "<" , if not followed by a space the browser will consider it as an openig html-tag....HERE IS HOWTO escape the ASCII string : Just replace in the source code the first "&" of the ASCII string with &
|
|
In all operating system for PC is contained a software-support to manage JavaScript , that is a programming language. To call this feature into action you will need to set into your html code section of your file the following TAGS. The proprietary syntax for JavaScript is outlined in red : <script language=javascript> <!-- Result of this code is also in this separated file named as javascript.htm // This is a comment extended over one line [...above link is another comment] /*Here starts a multilines' comment. Comments are notes that the programmer sets to recall or give himself, [or to others] ... informations about his coding for a further usage-guidance. Here ends the multiline comment.*/ var VAR="I am the <b>JavaScript</b>'s INTERPRETER <b>:-)</b>"; document.write(VAR,'<blockquote>...</blockquote>'); //This is the place for another single line comment--> </script>
|
To comment any html-TAG ...just set an exclamation mark [also in the closing tag] :
For example : <!font color=red>Commento di un TAG</font> will write : Commento di un TAG ...if till that point the color was green, as the closing TAG is not commented the color of the text [green] will be denied : This is green and this is red and this is again green SOURCE : <font color=green>This is green and <font color=red>this is red</font> and this is again green</font> This is green and this is red and this is again green ←[...error] → [rectify] SOURCE : <font color=green>This is green and <!font color=red>this is red</font> and this is again green</font> ...This also show that some tags can be nested in their own name The exclamation mark invalidates opening and closing TAGS and can be used as a sole standby <!COMMENT> ... no need to be closed. The following TAGS can hide any html and JavaScript in the page : |