in reply to Re: Hermitage page is blank
in thread Hermitage page is blank
Okay. So the Hermitage page is not some mistake. It's empty on purpose. I just wanted to know that. Since I use a browser that is an offshoot of PaleMoon, sometimes there is content that does not show up on my computer. And I was wondering if there is something there that only I cannot see on my computer or if others can't see it either. It's blank on purpose. Thanks for clearing that up!
Now I am going to do some testing here:
The greater than sign: >
The less than sign: <
The AND sign: & and the brackets: [ and ]
The TAB character doesn't always work. It's best to avoid using it. The <NOBR> HTML tag does not work. The <CANVAS> HTML object does not work. The <INPUT> HTML object does not work. The <SELECT> HTML object does not work. The <TEXTAREA> HTML object does not work. The <DIV> HTML object does not work. The <IMG> object does not work. The <SCRIPT> tag does not work. CSS HTML styling does not work. <FONT FACE='' and COLOR='' and SIZE=''> works! That's neat. On my phone, one line is 50 characters wide. So, if I want text to appear perfectly on my smartphone, then I have to write like this. Something I should remember is that <CODE> tags wrap text at 70 characters. And using the <TT> or <PRE> tags, the minimum line length is 60 characters. What works: |
Italic text
Bold text
Underlined text
An exponent: 28
A list using LI:
This text is indented using codes.
TESTING H1 heading
TESTING H2 heading
TESTING H3 heading
Strike through text
This text is indented using <BLOCKQUOTE>
This text is indented using a TABLE.
| |
Okay. I wrote a little perl script. Will include it here:
#!/usr/bin/perl -w use strict; use warnings; open(my $FH, ">D:\\DESKTOP\\CharacterList123.txt") or die "\nCannot create file!\n"; print $FH '<PRE>'; for (my $i = 0; $i < 256; $i++) { print $FH sprintf('%0.4X ', $i), "$i = &#$i; ( &#$i; )\n"; } print $FH "\n\nTesting some Hebrew letters now:\n", "\nש ל ו ם\n"; print $FH '</PRE>'; close $FH; print "\nSUCCESS!\n\n"; exit;
I will copy and paste the output of the above
code here to see what happens. I hope
it's not going to blow up this page.
0000 0 = ( � ) 0001 1 = (  ) 0002 2 = (  ) 0003 3 = (  ) 0004 4 = (  ) 0005 5 = (  ) 0006 6 = (  ) 0007 7 = (  ) 0008 8 = (  ) 0009 9 = ( 	 ) 000A 10 = ( ) 000B 11 = (  ) 000C 12 = (  ) 000D 13 = ( ) 000E 14 = (  ) 000F 15 = (  ) 0010 16 = (  ) 0011 17 = (  ) 0012 18 = (  ) 0013 19 = (  ) 0014 20 = (  ) 0015 21 = (  ) 0016 22 = (  ) 0017 23 = (  ) 0018 24 = (  ) 0019 25 = (  ) 001A 26 = (  ) 001B 27 = (  ) 001C 28 = (  ) 001D 29 = (  ) 001E 30 = (  ) 001F 31 = (  ) 0020 32 = (   ) 0021 33 = ! ( ! ) 0022 34 = " ( " ) 0023 35 = # ( # ) 0024 36 = $ ( $ ) 0025 37 = % ( % ) 0026 38 = & ( & ) 0027 39 = ' ( ' ) 0028 40 = ( ( ( ) 0029 41 = ) ( ) ) 002A 42 = * ( * ) 002B 43 = + ( + ) 002C 44 = , ( , ) 002D 45 = - ( - ) 002E 46 = . ( . ) 002F 47 = / ( / ) 0030 48 = 0 ( 0 ) 0031 49 = 1 ( 1 ) 0032 50 = 2 ( 2 ) 0033 51 = 3 ( 3 ) 0034 52 = 4 ( 4 ) 0035 53 = 5 ( 5 ) 0036 54 = 6 ( 6 ) 0037 55 = 7 ( 7 ) 0038 56 = 8 ( 8 ) 0039 57 = 9 ( 9 ) 003A 58 = : ( : ) 003B 59 = ; ( ; ) 003C 60 = < ( < ) 003D 61 = = ( = ) 003E 62 = > ( > ) 003F 63 = ? ( ? ) 0040 64 = @ ( @ ) 0041 65 = A ( A ) 0042 66 = B ( B ) 0043 67 = C ( C ) 0044 68 = D ( D ) 0045 69 = E ( E ) 0046 70 = F ( F ) 0047 71 = G ( G ) 0048 72 = H ( H ) 0049 73 = I ( I ) 004A 74 = J ( J ) 004B 75 = K ( K ) 004C 76 = L ( L ) 004D 77 = M ( M ) 004E 78 = N ( N ) 004F 79 = O ( O ) 0050 80 = P ( P ) 0051 81 = Q ( Q ) 0052 82 = R ( R ) 0053 83 = S ( S ) 0054 84 = T ( T ) 0055 85 = U ( U ) 0056 86 = V ( V ) 0057 87 = W ( W ) 0058 88 = X ( X ) 0059 89 = Y ( Y ) 005A 90 = Z ( Z ) 005B 91 = [ ( [ ) 005C 92 = \ ( \ ) 005D 93 = ] ( ] ) 005E 94 = ^ ( ^ ) 005F 95 = _ ( _ ) 0060 96 = ` ( ` ) 0061 97 = a ( a ) 0062 98 = b ( b ) 0063 99 = c ( c ) 0064 100 = d ( d ) 0065 101 = e ( e ) 0066 102 = f ( f ) 0067 103 = g ( g ) 0068 104 = h ( h ) 0069 105 = i ( i ) 006A 106 = j ( j ) 006B 107 = k ( k ) 006C 108 = l ( l ) 006D 109 = m ( m ) 006E 110 = n ( n ) 006F 111 = o ( o ) 0070 112 = p ( p ) 0071 113 = q ( q ) 0072 114 = r ( r ) 0073 115 = s ( s ) 0074 116 = t ( t ) 0075 117 = u ( u ) 0076 118 = v ( v ) 0077 119 = w ( w ) 0078 120 = x ( x ) 0079 121 = y ( y ) 007A 122 = z ( z ) 007B 123 = { ( { ) 007C 124 = | ( | ) 007D 125 = } ( } ) 007E 126 = ~ ( ~ ) 007F 127 = (  ) 0080 128 = ( € ) 0081 129 = (  ) 0082 130 = ( ‚ ) 0083 131 = ( ƒ ) 0084 132 = ( „ ) 0085 133 = ( … ) 0086 134 = ( † ) 0087 135 = ( ‡ ) 0088 136 = ( ˆ ) 0089 137 = ( ‰ ) 008A 138 = ( Š ) 008B 139 = ( ‹ ) 008C 140 = ( Œ ) 008D 141 = (  ) 008E 142 = ( Ž ) 008F 143 = (  ) 0090 144 = (  ) 0091 145 = ( ‘ ) 0092 146 = ( ’ ) 0093 147 = ( “ ) 0094 148 = ( ” ) 0095 149 = ( • ) 0096 150 = ( – ) 0097 151 = ( — ) 0098 152 = ( ˜ ) 0099 153 = ( ™ ) 009A 154 = ( š ) 009B 155 = ( › ) 009C 156 = ( œ ) 009D 157 = (  ) 009E 158 = ( ž ) 009F 159 = ( Ÿ ) 00A0 160 = (   ) 00A1 161 = ¡ ( ¡ ) 00A2 162 = ¢ ( ¢ ) 00A3 163 = £ ( £ ) 00A4 164 = ¤ ( ¤ ) 00A5 165 = ¥ ( ¥ ) 00A6 166 = ¦ ( ¦ ) 00A7 167 = § ( § ) 00A8 168 = ¨ ( ¨ ) 00A9 169 = © ( © ) 00AA 170 = ª ( ª ) 00AB 171 = « ( « ) 00AC 172 = ¬ ( ¬ ) 00AD 173 = ( ­ ) 00AE 174 = ® ( ® ) 00AF 175 = ¯ ( ¯ ) 00B0 176 = ° ( ° ) 00B1 177 = ± ( ± ) 00B2 178 = ² ( ² ) 00B3 179 = ³ ( ³ ) 00B4 180 = ´ ( ´ ) 00B5 181 = µ ( µ ) 00B6 182 = ¶ ( ¶ ) 00B7 183 = · ( · ) 00B8 184 = ¸ ( ¸ ) 00B9 185 = ¹ ( ¹ ) 00BA 186 = º ( º ) 00BB 187 = » ( » ) 00BC 188 = ¼ ( ¼ ) 00BD 189 = ½ ( ½ ) 00BE 190 = ¾ ( ¾ ) 00BF 191 = ¿ ( ¿ ) 00C0 192 = À ( À ) 00C1 193 = Á ( Á ) 00C2 194 =  (  ) 00C3 195 = à ( à ) 00C4 196 = Ä ( Ä ) 00C5 197 = Å ( Å ) 00C6 198 = Æ ( Æ ) 00C7 199 = Ç ( Ç ) 00C8 200 = È ( È ) 00C9 201 = É ( É ) 00CA 202 = Ê ( Ê ) 00CB 203 = Ë ( Ë ) 00CC 204 = Ì ( Ì ) 00CD 205 = Í ( Í ) 00CE 206 = Î ( Î ) 00CF 207 = Ï ( Ï ) 00D0 208 = Ð ( Ð ) 00D1 209 = Ñ ( Ñ ) 00D2 210 = Ò ( Ò ) 00D3 211 = Ó ( Ó ) 00D4 212 = Ô ( Ô ) 00D5 213 = Õ ( Õ ) 00D6 214 = Ö ( Ö ) 00D7 215 = × ( × ) 00D8 216 = Ø ( Ø ) 00D9 217 = Ù ( Ù ) 00DA 218 = Ú ( Ú ) 00DB 219 = Û ( Û ) 00DC 220 = Ü ( Ü ) 00DD 221 = Ý ( Ý ) 00DE 222 = Þ ( Þ ) 00DF 223 = ß ( ß ) 00E0 224 = à ( à ) 00E1 225 = á ( á ) 00E2 226 = â ( â ) 00E3 227 = ã ( ã ) 00E4 228 = ä ( ä ) 00E5 229 = å ( å ) 00E6 230 = æ ( æ ) 00E7 231 = ç ( ç ) 00E8 232 = è ( è ) 00E9 233 = é ( é ) 00EA 234 = ê ( ê ) 00EB 235 = ë ( ë ) 00EC 236 = ì ( ì ) 00ED 237 = í ( í ) 00EE 238 = î ( î ) 00EF 239 = ï ( ï ) 00F0 240 = ð ( ð ) 00F1 241 = ñ ( ñ ) 00F2 242 = ò ( ò ) 00F3 243 = ó ( ó ) 00F4 244 = ô ( ô ) 00F5 245 = õ ( õ ) 00F6 246 = ö ( ö ) 00F7 247 = ÷ ( ÷ ) 00F8 248 = ø ( ø ) 00F9 249 = ù ( ù ) 00FA 250 = ú ( ú ) 00FB 251 = û ( û ) 00FC 252 = ü ( ü ) 00FD 253 = ý ( ý ) 00FE 254 = þ ( þ ) 00FF 255 = ÿ ( ÿ ) Testing some Hebrew letters now:
ש ל ו ם
Okay. And now some links. This is a link to my page: http://wzsn.net/perl/
Same link using A HREF tag: MY PERL SITE
Using TARGET="_blank" to open in new tab: MY PERL SITE
This probable won't work. I will insert this JavaScript program:
<SCRIPT> <!-- /* Print 256-color palette with JavaScript */ COUNT = 0; HTML = ["\x3CTABLE CELLSPACING=0 CELLPADDING=6>"]; for (r = 0; r < 6; r++) { RED = "00 33 66 99 cc ff".substr(r << 2, 2); for (g = 0; g < 7; g++) { HTML.push("\x3CTR>"); GREEN = "00 33 66 99 cc e8 ff".substr(g << 2, 2); for (b = 0; b < 6; b++) { BLUE = "00 33 66 99 cc ff".substr(b << 2, 2); HEXCOLOR = RED + GREEN + BLUE; HTML.push("\x3CTD BGCOLOR='" + HEXCOLOR + "'>\x3CTT>\x3CFONT SIZ +E=1>" + (COUNT | 256).toString(16).slice(1) + "=" + HEXCOLOR); COUNT++; } } } document.write(HTML.join("") + "\x3C/TABLE>"); HTML = 0; --> </SCRIPT>
Here we go: <SCRIPT> </SCRIPT>
And now the raw output of this script (what it should produce):
00=00000001=000033 | 02=000066 | 03=000099 | 04=0000cc | 05=0000ff | 06=003300 | 07=003333 | 08=003366 | 09=003399 | 0a=0033cc | 0b=0033ff | 0c=006600 | 0d=006633 | 0e=006666 | 0f=006699 | 10=0066cc | 11=0066ff | 12=009900 | 13=009933 | 14=009966 | 15=009999 | 16=0099cc | 17=0099ff | 18=00cc00 | 19=00cc33 | 1a=00cc66 | 1b=00cc99 | 1c=00cccc | 1d=00ccff | 1e=00e800 | 1f=00e833 | 20=00e866 | 21=00e899 | 22=00e8cc | 23=00e8ff | 24=00ff00 | 25=00ff33 | 26=00ff66 | 27=00ff99 | 28=00ffcc | 29=00ffff | 2a=330000 | 2b=330033 | 2c=330066 | 2d=330099 | 2e=3300cc | 2f=3300ff | 30=333300 | 31=333333 | 32=333366 | 33=333399 | 34=3333cc | 35=3333ff | 36=336600 | 37=336633 | 38=336666 | 39=336699 | 3a=3366cc | 3b=3366ff | 3c=339900 | 3d=339933 | 3e=339966 | 3f=339999 | 40=3399cc | 41=3399ff | 42=33cc00 | 43=33cc33 | 44=33cc66 | 45=33cc99 | 46=33cccc | 47=33ccff | 48=33e800 | 49=33e833 | 4a=33e866 | 4b=33e899 | 4c=33e8cc | 4d=33e8ff | 4e=33ff00 | 4f=33ff33 | 50=33ff66 | 51=33ff99 | 52=33ffcc | 53=33ffff | 54=660000 | 55=660033 | 56=660066 | 57=660099 | 58=6600cc | 59=6600ff | 5a=663300 | 5b=663333 | 5c=663366 | 5d=663399 | 5e=6633cc | 5f=6633ff | 60=666600 | 61=666633 | 62=666666 | 63=666699 | 64=6666cc | 65=6666ff | 66=669900 | 67=669933 | 68=669966 | 69=669999 | 6a=6699cc | 6b=6699ff | |