[Content]
Automated Glyphs
There are literally thousands of glyphs that aren’t used to full effect on the web. These can be punctuation, accents symbols and currency. Part of the reason they aren’t used as much — in my opinion — is that their entities aren’t very well know or accessible.
This little PHP script will automatically write out the first x amount of glyphs and their respective HTML entities.
I imagine this will be a pretty useful tool to many, so it might be an idea to bookmark it on Delicious.
The script
<ul class="col">
<?php
for ($count=1; $count<=50; $count++){
if ($count&1){
echo "<li class=\"odd\">&#" .$count. "; = &#" .$count. ";</li>\n";
}
else{
echo "<li>&#" .$count. "; = &#" .$count. ";</li>\n";
}
}
?>
</ul>
In action
Here is the script in action. You can also view associated CSS.
- = 
- = 
- = 
- = 
- = 
- = 
- = 
- = 
- = 	
- =
- = 
- = 
- =
- = 
- = 
- = 
- = 
- = 
- = 
- = 
- = 
- = 
- = 
- = 
- = 
- = 
- = 
- = 
- = 
- = 
- = 
- =  
- ! = !
- " = "
- # = #
- $ = $
- % = %
- & = &
- ' = '
- ( = (
- ) = )
- * = *
- + = +
- , = ,
- - = -
- . = .
- / = /
- 0 = 0
- 1 = 1
- 2 = 2
- 3 = 3
- 4 = 4
- 5 = 5
- 6 = 6
- 7 = 7
- 8 = 8
- 9 = 9
- : = :
- ; = ;
- < = <
- = = =
- > = >
- ? = ?
- @ = @
- A = A
- B = B
- C = C
- D = D
- E = E
- F = F
- G = G
- H = H
- I = I
- J = J
- K = K
- L = L
- M = M
- N = N
- O = O
- P = P
- Q = Q
- R = R
- S = S
- T = T
- U = U
- V = V
- W = W
- X = X
- Y = Y
- Z = Z
- [ = [
- \ = \
- ] = ]
- ^ = ^
- _ = _
- ` = `
- a = a
- b = b
- c = c
- d = d
- e = e
- f = f
- g = g
- h = h
- i = i
- j = j
- k = k
- l = l
- m = m
- n = n
- o = o
- p = p
- q = q
- r = r
- s = s
- t = t
- u = u
- v = v
- w = w
- x = x
- y = y
- z = z
- { = {
- | = |
- } = }
- ~ = ~
- = 
- = €
- = 
- = ‚
- = ƒ
- = „
- = …
- = †
- = ‡
- = ˆ
- = ‰
- = Š
- = ‹
- = Œ
- = 
- = Ž
- = 
- = 
- = ‘
- = ’
- = “
- = ”
- = •
- = –
- = —
- = ˜
- = ™
- = š
- = ›
- = œ
- = 
- = ž
- = Ÿ
- =  
- ¡ = ¡
- ¢ = ¢
- £ = £
- ¤ = ¤
- ¥ = ¥
- ¦ = ¦
- § = §
- ¨ = ¨
- © = ©
- ª = ª
- « = «
- ¬ = ¬
- = ­
- ® = ®
- ¯ = ¯
- ° = °
- ± = ±
- ² = ²
- ³ = ³
- ´ = ´
- µ = µ
- ¶ = ¶
- · = ·
- ¸ = ¸
- ¹ = ¹
- º = º
- » = »
- ¼ = ¼
- ½ = ½
- ¾ = ¾
- ¿ = ¿
- À = À
- Á = Á
- Â = Â
- Ã = Ã
- Ä = Ä
- Å = Å
- Æ = Æ
- Ç = Ç
- È = È
Web Design+
Typogridphy
Clecktionary