Quickies
posted on 20110526
The following notes are so brief that that they do not require this introductory sentence.
- Allow the Mac to start without a keyboard attached:
- System Preferences → Bluetooth → Advanced... → Uncheck the box marked "Open Bluetooth Assistant at startup when no input device is present".
- To get/change the creator or type of a file:
- Run /Developer/usr/bin/GetFileInfo or /Developer/usr/bin/SetFile.
No audio from some websites
posted on 2010-01-25 14:47:14
Problem: Sometimes I don’t hear any sound from Safari or Firefox while playing content from multimedia websites (e.g., YouTube). Curiously, sites that stream QuickTime files come through just fine; it’s just the embedded video files that don’t produce sound.
Cause: If you work with lots of sound apps (SoundHack, Audacity, etc.), one of them may have inadvertently munged some of the the Mac’s core audio settings.
Fix:
- Open Audio MIDI Setup (/Applications/Utilities/), then check the Audio Output setting.
- Change the Audio Output setting to 44100.0 Hz.
- Quit Audio MIDI Setup.
- Restart the app (e.g., Firefox).
See the Apple tech article "Mac OS X: No audio from certain multimedia content" for more details.
How to setup virtual hosts
posted on 2008-02-26 22:05:15
The Mac is a great platform for website development. You keep each site that you’re working on in a separate folder in your ~/Sites folder. You edit and debug them locally and then, when everything’s good to go, you just ftp the files up to your live server, or commit your changes to your svn repository. Easy.
But eventually you may want to use server-side includes (SSI) to generate standard headers or footers on your pages. SSI are probably readily available on your webhost’s server, but to get them working on your Mac requires one small step: you have to configure Apache to activate a virtual server for each of your sites. Don’t panic; it’s easy to do.
Let’s say you have a site installed at ~yourname/Sites/project1. And let’s say the site’s pages have a standard footer, which is contained in the file ~yourname/Sites/project1/includes/footer.html. You’d like to be able to put the following SSI line in every file on your site:
<!--#include virtual="/includes/footer.html" -->
Trouble is, the server interprets that path as relative to the DocumentRoot setting in your Apache configuration. On the Mac, the default setting (in /etc/httpd.conf) is
DocumentRoot "/Library/WebServer/Documents"
So when you load a page from the site, the server looks for your footer in /Library/WebServer/Documents/includes/footer.html. Since that’s not where your footer lives, you’ll probably just get this unhelpful error:
[an error occurred while processing this directive]
You could move your includes into /Library/WebServer/Documents, but that’s a supremely bad idea; you’ll soon go crazy keeping track of all your files scattered across the filesystem. Instead, take 2 minutes to do things properly, by setting up a virtual host on your Mac. This will allow you to set the DocumentRoot for each of your web projects. Here’s how:
- Open Terminal and type:
cd /etc/httpd/users. You should see a file in there with a name likeyourname.confwhere "yourname" is your Mac user name. - Type
sudo vi yourname.confand enter your password, if asked. - Insert the following lines at the end of the file
NameVirtualHost 127.0.0.1:80 <VirtualHost project1> ServerName project1 DocumentRoot /Users/yourname/Sites/project1 </VirtualHost>
(If you have more sites, just add more <VirtualHost> blocks.)
- Save and quit (type
:wq) - Restart Apache:
sudo apachectl graceful - Finally, edit your hosts file (
sudo vi /etc/hosts) and insert the following lines at the end:127.0.0.1 project1
(If you have more sites, just add more lines in that format. For example,
127.0.0.1 project2, etc.) - Now point your browser to http://project1 and your SSI include files will be correctly displayed.
How to make system files and folders visible
posted on 2007-02-28 21:34:36
By default, the Finder hides root-level directories (/usr, /lib, /etc, etc.,) from dialog boxes, which makes it hard to navigate there. Here’s one trick to make them accessible to the Finder’s — and every app’s — dialog boxes.
- In the Finder, type "shift command G" ("Go to folder").
- Type "/usr" (for example) and click "Go".
- Drag the tiny "usr" icon at the top of the window over to the sidebar.
Voilà! From now on, /usr will always be easily accessible to "open" and "save" dialog boxes in all your apps.
To make every file visible to the Finder — including those that begin with a ".", such as .htaccess or .login — issue the following command at the Terminal:
defaults write com.apple.finder AppleShowAllFiles TRUE; killall Finder
To make those ’invisible’ files go away again, do this:
defaults write com.apple.finder AppleShowAllFiles FALSE; killall Finder
I like to be able to turn those invisible files on and off easily, so I have a couple of aliases in my ~/.alias file:
alias dot+ "defaults write com.apple.finder AppleShowAllFiles TRUE; killall Finder" alias dot- "defaults write com.apple.finder AppleShowAllFiles FALSE; killall Finder"
Then it’s simply a matter of typingdot+ or dot- to toggle the visibility of those "invisible" files.
Or you could use a third-party utility such as TinkerTool.
AppleScript: "Press Run to run this script"
posted on 2007-02-25 21:42:57
If you write your own AppleScripts, you’ve probably seen an alert box pop up with this message when you try to run your script:
Press Run to run this script, Quit to quit.
Fix: When you save the script as an app using "Save as...", look at the save options carefully. Make sure the "Startup screen" checkbox is unchecked before saving.
Works for me.
Firefox mis-renders some TrueType italics
posted on 2007-04-04 21:49:52
Problem: Firefox (2.0.0.3; Mac OS 10.4.9) renders some fonts (Gentium, for example) such that italicized text overwrites the preceding character or two. The result can be an unintelligible mess (shown here in Gentium font):
Safari and IE (Mac) don’t have this problem.
Cause: Firefox seems to have difficulty in rendering TrueType fonts in italic.
Fix: Hunt down and remove any TrueType versions of the offending font in all four of the possible font folders (~/Library/Fonts, /Library/Fonts/, /Network/Library/Fonts/, and /System/Library/Fonts/ — see "Mac OS X: Font Locations and Their Purposes"). Re-install the "font suitcase" version of the font (i.e., drop the font suitcase into one of those four font folders). Restart Firefox.
Windows and buttons have annoying borders
posted on 2007-05-28 21:54:49
Problem:

Cause: You probably accidentally turned on VoiceOver, by hitting cmd-F5.
Fix: cmd-F5 toggles VoiceOver on/off. Failing that, go to System Preferences → Universal Access and turn off VoiceOver.
How to install GD into PHP on Leopard
posted on 2008-10-20 16:23:09
A tutorial for the easiest possible way to install GD into PHP on Leopard: Adding GD library for Mac OS X Leopard.
First, some background... Mac OS X 10.5 (Leopard) ships with PHP 5.2 installed, but without the useful GD graphics library. Most of the GD installation tutorials I found on the web involve an intimidating series of steps that require downloading a bunch of supporting libraries, compiling them, then re-compiling PHP. Although Kénior’s tutorial Adding GD Library for Mac OS X Leopard seems to have worked for many people, it never quite worked for me; after many careful tries, I kept getting Apache errors (as seen in /var/error/apache2/error_log) that prevented GD from successfully loading:
After much hair-pulling, I finally found that wonderfully simple tutorial. It calls for simply (1) downloading a fresh PHP installation that already has GD compiled-in, and (2) using it to replace the existing PHP folder in /usr/local. I had PHP up and running with GD in about one minute.
What could be simpler?
Common glyphs in ASCII and HTML (sorted by HTML code)
posted on 2001-01-01 17:46:22
|
Glyph |
Description |
HTML |
HTML |
Latin-1 |
Windows |
Mac |
Mac |
|
latin uppercase S with caron |
138 |
||||||
|
latin lowercase s with caron |
154 |
||||||
|
non-breaking space |
|
|
160 |
202 |
<op><sh> |
||
|
¡ |
inverted exclamation mark |
|
|
161 |
161 |
193 |
<op>1 |
|
¢ |
cent sign |
|
|
162 |
162 |
162 |
<op>4 |
|
£ |
pound sterling sign |
|
|
163 |
163 |
163 |
<op>3 |
|
¤ |
general currency sign |
|
|
164 |
164 |
219 |
<op><sh> 2 |
|
¥ |
yen sign |
|
|
165 |
165 |
180 |
<op>y |
| ¦ |
broken vertical bar |
|
|
166 |
166 |
||
|
§ |
section sign |
|
|
167 |
167 |
164 |
<op>6 |
|
¨ |
umlaut (diaeresis) |
|
|
168 |
168 |
172 |
<op><sh> u |
|
© |
copyright sign |
|
|
169 |
169 |
169 |
<op>g |
|
ª |
ordinal indicator, feminine |
|
|
170 |
170 |
187 |
<op>9 |
|
« |
angle quotation mark, left |
|
|
171 |
171 |
199 |
<op>\\ |
|
¬ |
not sign |
|
|
172 |
172 |
194 |
<op>l |
| |
soft hyphen |
|
|
173 |
173 |
||
|
® |
registered sign |
|
|
174 |
174 |
168 |
<op>r |
|
¯ |
macron |
|
|
175 |
175 |
248 |
<op><sh> , |
|
° |
degree sign |
|
|
176 |
176 |
161 |
<op><sh> 8 |
|
± |
plus-or-minus sign |
|
|
177 |
177 |
177 |
<op><sh> = |
| ² |
superscript 2 |
|
|
178 |
178 |
||
| ³ |
superscript 3 |
|
|
179 |
179 |
||
|
´ |
acute accent |
|
|
180 |
180 |
171 |
<op><sh>e |
|
µ |
micro sign |
|
|
181 |
181 |
181 |
<op>m |
|
¶ |
pilcrow (paragraph sign) |
|
|
182 |
182 |
166 |
<op>7 |
|
· |
middle dot |
|
|
183 |
183 |
225 |
<op><sh> 9 |
|
¸ |
cedilla |
|
|
184 |
184 |
252 |
<op><sh> z |
|
¹ |
superscript 1 |
|
|
185 |
185 |
245 |
<op><sh>b |
|
º |
ordinal indicator, masculine |
|
|
186 |
186 |
188 |
<op>0 |
|
» |
angle quotation mark, right |
|
|
187 |
187 |
200 |
<op><sh> \\ |
| ¼ |
small 1/4 fraction (one quarter) |
|
|
188 |
188 |
||
| ½ |
small 1/2 fraction (one half) |
|
|
189 |
189 |
||
| ¾ |
small 3/4 fraction (three quarters) |
|
|
190 |
190 |
||
|
¿ |
inverted question mark |
|
|
191 |
191 |
192 |
<op><sh> / |
|
À |
uppercase A, grave accent |
|
|
192 |
192 |
203 |
<op>` A |
|
Á |
uppercase A, acute accent |
|
|
193 |
193 |
231 |
<op>y |
|
 |
uppercase A, circumflex accent |
|
|
194 |
194 |
229 |
<op><sh> m |
|
à |
uppercase A, tilde |
|
|
195 |
195 |
204 |
<op>n A |
|
Ä |
uppercase A, diaeresis (umlaut) |
|
|
196 |
196 |
128 |
<op>u A |
|
Å |
uppercase A, ring |
|
|
197 |
197 |
129 |
<op><sh> a |
|
Æ |
uppercase AE diphthong (ligature) |
|
|
198 |
198 |
174 |
<op><sh> ’ |
|
Ç |
uppercase C, cedilla |
|
|
199 |
199 |
130 |
<op><sh> c |
|
È |
uppercase E, grave accent |
|
|
200 |
200 |
233 |
<op>` E |
|
É |
uppercase E, acute accent |
|
|
201 |
201 |
131 |
<op>e E |
|
Ê |
uppercase E, circumflex accent |
|
|
202 |
202 |
230 |
<op>i E |
|
Ë |
uppercase E, diaeresis (umlaut) |
|
|
203 |
203 |
232 |
<op>u E |
|
Ì |
uppercase I, grave accent |
|
|
204 |
204 |
237 |
<op>` I |
|
Í |
uppercase I, acute accent |
|
|
205 |
205 |
234 |
<op><sh> s |
|
Î |
uppercase I, circumflex accent |
|
|
206 |
206 |
235 |
<op><sh> d |
|
Ï |
uppercase I, diaeresis (umlaut) |
|
|
207 |
207 |
236 |
<op><sh> f |
| Ð |
uppercase eth, icelandic |
|
|
208 |
208 |
||
|
Ñ |
uppercase N, tilde |
|
|
209 |
209 |
132 |
<op>n N |
|
Ò |
uppercase O, grave accent |
|
|
210 |
210 |
241 |
<op><sh> l |
|
Ó |
uppercase O, acute accent |
|
|
211 |
211 |
238 |
<op><sh> h |
|
Ô |
uppercase O, circumflex accent |
|
|
212 |
212 |
239 |
<op><sh> j |
|
Õ |
uppercase O, tilde |
|
|
213 |
213 |
205 |
<op>n O |
|
Ö |
uppercase O, diaeresis (umlaut) |
|
|
214 |
214 |
133 |
<op>u O |
| × |
multiplication sign |
|
|
215 |
215 |
||
|
Ø |
uppercase O, slash |
|
|
216 |
216 |
175 |
<op><sh> o |
|
Ù |
uppercase U, grave accent |
|
|
217 |
217 |
244 |
<op>` U |
|
Ú |
uppercase U, acute accent |
|
|
218 |
218 |
242 |
<op><sh>; |
|
Û |
uppercase U, circumflex accent |
|
|
219 |
219 |
243 |
<op>i U |
|
Ü |
uppercase U, diaeresis (umlaut) |
|
|
220 |
220 |
134 |
<op>u U |
| Ý |
uppercase Y, acute accent |
|
|
221 |
221 |
||
| Þ |
uppercase Thorn, icelandic |
|
|
222 |
222 |
||
|
ß |
German eszed |
|
|
223 |
223 |
167 |
<op>s |
|
à |
lowercase a, grave accent |
|
|
224 |
224 |
136 |
<op>` a |
|
á |
lowercase a, acute accent |
|
|
225 |
225 |
135 |
<op>e a |
|
â |
lowercase a, circumflex accent |
|
|
226 |
226 |
137 |
<op>i a |
|
ã |
lowercase a, tilde |
|
|
227 |
227 |
139 |
<op>n a |
|
ä |
lowercase a, diaeresis (umlaut) |
|
|
228 |
228 |
138 |
<op>u a |
|
å |
lowercase a, ring |
|
|
229 |
229 |
140 |
<op>a |
|
æ |
lowercase ae diphthong (ligature) |
|
|
230 |
230 |
190 |
<op>’ |
|
ç |
lowercase c, cedilla |
|
|
231 |
231 |
141 |
<op>c |
|
è |
lowercase e, grave accent |
|
|
232 |
232 |
143 |
<op>` e |
|
é |
lowercase e, acute accent |
|
|
233 |
233 |
142 |
<op>e E |
|
ê |
lowercase e, circumflex accent |
|
|
234 |
234 |
144 |
<op>i e |
|
ë |
lowercase e, diaeresis (umlaut) |
|
|
235 |
235 |
145 |
<op>u e |
|
ì |
lowercase i, grave accent |
|
|
236 |
236 |
147 |
<op>` i |
|
í |
lowercase i, acute accent |
|
|
237 |
237 |
146 |
<op>e i |
|
î |
lowercase i, circumflex accent |
|
|
238 |
238 |
148 |
<op>i i |
|
ï |
lowercase i, diaeresis (umlaut) |
|
|
239 |
239 |
149 |
<op>u i |
| ð |
lowercase eth, icelandic |
|
|
240 |
240 |
||
|
ñ |
lowercase n, tilde |
|
|
241 |
241 |
150 |
<op>n n |
|
ò |
lowercase o, grave accent |
|
|
242 |
242 |
152 |
<op>` o |
|
ó |
lowercase o, acute accent |
|
|
243 |
243 |
151 |
<op>e o |
|
ô |
lowercase o, circumflex accent |
|
|
244 |
244 |
153 |
<op>i o |
|
õ |
lowercase o, tilde |
|
|
245 |
245 |
155 |
<op>n o |
|
ö |
lowercase o, diaeresis (umlaut) |
|
|
246 |
246 |
154 |
<op>u o |
|
÷ |
divide sign |
|
|
247 |
247 |
214 |
<op>/ |
|
ø |
lowercase o, slash |
|
|
248 |
248 |
191 |
<op>o |
|
ù |
lowercase u, grave accent |
|
|
249 |
249 |
157 |
<op>` u |
|
ú |
lowercase u, acute accent |
|
|
250 |
250 |
156 |
<op>e u |
|
û |
lowercase u, circumflex accent |
|
|
251 |
251 |
158 |
<op>i u |
|
ü |
lowercase u, diaeresis (umlaut) |
|
|
252 |
252 |
159 |
<op>u u |
| ý |
lowercase y, acute accent |
|
|
253 |
253 |
||
| þ |
lowercase thorn, icelandic |
|
|
254 |
254 |
||
|
ÿ |
lowercase y, diaeresis (umlaut) |
|
|
255 |
255 |
216 |
<op>u y |
|
Œ |
latin uppercase ligature OE |
|
|
140 |
206 |
<op><sh>q |
|
|
œ |
latin lowercase ligature oe |
|
|
156 |
207 |
<op>q |
|
|
Ÿ |
latin uppercase Y with diaeresis |
|
|
159 |
217 |
<op>u Y |
|
|
ƒ |
latin small f with hook (function or florin) |
|
|
131 |
196 |
<op>f |
|
|
ˆ |
modifier letter circumflex accent |
|
|
136 |
246 |
<op><sh>i |
|
|
ˇ |
caron |
|
|
255 |
<op><sh>t |
||
|
˘ |
breve |
|
|
249 |
<op><sh>. |
||
|
˙ |
dot above |
|
|
250 |
<op>h |
||
|
˚ |
ring above |
|
|
251 |
<op>k |
||
|
˛ |
ogonek |
|
|
254 |
<op>x |
||
|
˜ |
small tilde |
|
|
152 |
247 |
<op><sh>n |
|
|
˝ |
double acute accent |
|
|
253 |
<op><sh>g |
||
|
Δ |
greek uppercase delta |
|
|
198 |
<op>j |
||
|
Ω |
greek uppercase omega |
|
|
189 |
<op>z |
||
|
π |
greek lowercase pi |
|
|
185 |
<op>p |
||
|
– |
en dash |
|
|
150 |
208 |
<op>- |
|
|
— |
em dash |
|
|
151 |
209 |
<op><sh>- |
|
|
‘ |
left single quotation mark |
|
|
145 |
212 |
<op>] |
|
|
’ |
right single quotation mark |
|
|
146 |
213 |
<op><sh>] |
|
|
‚ |
single low-9 quotation mark |
|
|
130 |
226 |
<op><sh>0 |
|
|
“ |
left double quotation mark |
|
|
147 |
210 |
<op>[ |
|
|
” |
right double quotation mark |
|
|
148 |
211 |
<op><sh>[ |
|
|
„ |
double low-9 quotation mark |
|
|
132 |
227 |
<op><sh>w |
|
|
† |
dagger |
|
|
134 |
160 |
<op>t |
|
|
‡ |
double dagger |
|
|
135 |
224 |
<op><sh>7 |
|
|
• |
bullet (black small circle) |
|
|
149 |
165 |
<op>8 |
|
|
… |
horizontal ellipsis (three dot leader) |
|
|
133 |
201 |
<op>; |
|
|
‰ |
per mille sign |
|
|
137 |
228 |
<op><sh>r |
|
|
‹ |
single left-pointing angle quotation mark |
|
|
139 |
220 |
<op><sh>3 |
|
|
› |
single right-pointing angle quotation mark |
|
|
155 |
221 |
<op><sh>4 |
|
|
⁄ |
fraction slash |
|
|
218 |
<op><sh>1 |
||
|
™ |
trade mark sign |
|
|
153 |
170 |
<op>2 |
|
|
™ |
trade mark sign |
|
|
||||
|
⅓ |
small 1/3 fraction (one third) |
|
|||||
|
⅔ |
small 2/3 fraction (two thirds) |
|
|||||
|
⅔ |
small 2/3 fraction (two thirds) |
|
|||||
|
⅕ |
small 1/5 fraction (one fifth) |
|
|||||
|
⅖ |
small 2/5 fraction (two fifths) |
|
|||||
|
⅗ |
small 3/5 fraction (three fifths) |
|
|||||
|
⅘ |
small 4/5 fraction (four fifths) |
|
|||||
|
⅙ |
small 1/6 fraction (one sixth) |
|
|||||
|
⅚ |
small 5/6 fraction (five sixths) |
|
|||||
|
⅛ |
small 1/8 fraction (one eighth) |
|
|||||
|
⅜ |
small 3/8 fraction (three eighths) |
|
|||||
|
⅝ |
small 5/8 fraction (five eighths) |
|
|||||
|
⅞ |
small 7/8 fraction (seven eighths) |
|
|||||
|
∂ |
partial differential (del) |
|
|
182 |
<op>d |
||
|
∏ |
n-ary product (product sign; greek large pi) |
|
|
184 |
<op><sh>p |
||
|
∑ |
n-ary summation (greek large sigma) |
|
|
183 |
<op>w |
||
|
√ |
square root (radical sign) |
|
|
195 |
<op>v |
||
|
∞ |
infinity |
|
|
176 |
<op>5 |
||
|
∫ |
integral |
|
|
186 |
<op>b |
||
|
≈ |
almost equal to (asymptotic to) |
|
|
197 |
<op>x |
||
|
≠ |
not equal to |
|
|
173 |
<op>= |
||
|
≤ |
less-than or equal to |
|
|
178 |
<op>, |
||
|
≥ |
greater-than or equal to |
|
|
179 |
<op>. |
||
|
◊ |
lozenge |
|
|
215 |
<op><sh>v |
||
|
|
Apple logo |
|
|
240 |
<op><sh>k |
||
|
fi |
ligature fi |
|
|
222 |
<op><sh>5 |
||
|
fl |
ligature fl |
|
|
223 |
<op><sh>6 |
Sources:
- Griswold, Ralph E. and Madge T. Griswold, The Icon Programming Language, 3rd ed. Peer to Peer, 1997, as quoted in
» www.cs.arizona.edu/patterns/weaving/webdocs/gre_char.pdfby Ralph Griswold, University of Arizona. - "Character entity references in HTML 4" (Section 24 of HTML 4.01 Specification: W3C Recommendation), by the World Wide Web Consortium; 1999.12.24;
» http://www.w3.org/TR/html4/sgml/entities.html. - "ASCII Extended Character Set, Macintosh", by Dawn Rorvik, Evergreen State College; 2003.05.20;
» http://www.evergreen.edu/biophysics/technotes/program/ascii_ext-mac.htm.
Common glyphs in ASCII and HTML (sorted by Mac code)
posted on 2001-01-01 17:59:37
|
Glyph |
Description |
HTML |
HTML |
Latin-1 |
Windows |
Mac |
Mac |
|
latin uppercase S with caron |
138 |
||||||
|
latin lowercase s with caron |
154 |
||||||
| ¦ |
broken vertical bar |
|
|
166 |
166 |
||
| |
soft hyphen |
|
|
173 |
173 |
||
| ² |
superscript 2 |
|
|
178 |
178 |
||
| ³ |
superscript 3 |
|
|
179 |
179 |
||
| ¼ |
small 1/4 fraction (one quarter) |
|
|
188 |
188 |
||
| ½ |
small 1/2 fraction (one half) |
|
|
189 |
189 |
||
| ¾ |
small 3/4 fraction (three quarters) |
|
|
190 |
190 |
||
| Ð |
uppercase eth, icelandic |
|
|
208 |
208 |
||
| × |
multiplication sign |
|
|
215 |
215 |
||
| Ý |
uppercase Y, acute accent |
|
|
221 |
221 |
||
| Þ |
uppercase Thorn, icelandic |
|
|
222 |
222 |
||
| ð |
lowercase eth, icelandic |
|
|
240 |
240 |
||
| ý |
lowercase y, acute accent |
|
|
253 |
253 |
||
| þ |
lowercase thorn, icelandic |
|
|
254 |
254 |
||
|
Ä |
uppercase A, diaeresis (umlaut) |
|
|
196 |
196 |
128 |
<op>u A |
|
Å |
uppercase A, ring |
|
|
197 |
197 |
129 |
<op><sh> a |
|
Ç |
uppercase C, cedilla |
|
|
199 |
199 |
130 |
<op><sh> c |
|
É |
uppercase E, acute accent |
|
|
201 |
201 |
131 |
<op>e E |
|
Ñ |
uppercase N, tilde |
|
|
209 |
209 |
132 |
<op>n N |
|
Ö |
uppercase O, diaeresis (umlaut) |
|
|
214 |
214 |
133 |
<op>u O |
|
Ü |
uppercase U, diaeresis (umlaut) |
|
|
220 |
220 |
134 |
<op>u U |
|
á |
lowercase a, acute accent |
|
|
225 |
225 |
135 |
<op>e a |
|
à |
lowercase a, grave accent |
|
|
224 |
224 |
136 |
<op>` a |
|
â |
lowercase a, circumflex accent |
|
|
226 |
226 |
137 |
<op>i a |
|
ä |
lowercase a, diaeresis (umlaut) |
|
|
228 |
228 |
138 |
<op>u a |
|
ã |
lowercase a, tilde |
|
|
227 |
227 |
139 |
<op>n a |
|
å |
lowercase a, ring |
|
|
229 |
229 |
140 |
<op>a |
|
ç |
lowercase c, cedilla |
|
|
231 |
231 |
141 |
<op>c |
|
é |
lowercase e, acute accent |
|
|
233 |
233 |
142 |
<op>e E |
|
è |
lowercase e, grave accent |
|
|
232 |
232 |
143 |
<op>` e |
|
ê |
lowercase e, circumflex accent |
|
|
234 |
234 |
144 |
<op>i e |
|
ë |
lowercase e, diaeresis (umlaut) |
|
|
235 |
235 |
145 |
<op>u e |
|
í |
lowercase i, acute accent |
|
|
237 |
237 |
146 |
<op>e i |
|
ì |
lowercase i, grave accent |
|
|
236 |
236 |
147 |
<op>` i |
|
î |
lowercase i, circumflex accent |
|
|
238 |
238 |
148 |
<op>i i |
|
ï |
lowercase i, diaeresis (umlaut) |
|
|
239 |
239 |
149 |
<op>u i |
|
ñ |
lowercase n, tilde |
|
|
241 |
241 |
150 |
<op>n n |
|
ó |
lowercase o, acute accent |
|
|
243 |
243 |
151 |
<op>e o |
|
ò |
lowercase o, grave accent |
|
|
242 |
242 |
152 |
<op>` o |
|
ô |
lowercase o, circumflex accent |
|
|
244 |
244 |
153 |
<op>i o |
|
ö |
lowercase o, diaeresis (umlaut) |
|
|
246 |
246 |
154 |
<op>u o |
|
õ |
lowercase o, tilde |
|
|
245 |
245 |
155 |
<op>n o |
|
ú |
lowercase u, acute accent |
|
|
250 |
250 |
156 |
<op>e u |
|
ù |
lowercase u, grave accent |
|
|
249 |
249 |
157 |
<op>` u |
|
û |
lowercase u, circumflex accent |
|
|
251 |
251 |
158 |
<op>i u |
|
ü |
lowercase u, diaeresis (umlaut) |
|
|
252 |
252 |
159 |
<op>u u |
|
† |
dagger |
|
|
134 |
160 |
<op>t |
|
|
° |
degree sign |
|
|
176 |
176 |
161 |
<op><sh> 8 |
|
¢ |
cent sign |
|
|
162 |
162 |
162 |
<op>4 |
|
£ |
pound sterling sign |
|
|
163 |
163 |
163 |
<op>3 |
|
§ |
section sign |
|
|
167 |
167 |
164 |
<op>6 |
|
• |
bullet (black small circle) |
|
|
149 |
165 |
<op>8 |
|
|
¶ |
pilcrow (paragraph sign) |
|
|
182 |
182 |
166 |
<op>7 |
|
ß |
German eszed |
|
|
223 |
223 |
167 |
<op>s |
|
® |
registered sign |
|
|
174 |
174 |
168 |
<op>r |
|
© |
copyright sign |
|
|
169 |
169 |
169 |
<op>g |
|
™ |
trade mark sign |
|
|
153 |
170 |
<op>2 |
|
|
´ |
acute accent |
|
|
180 |
180 |
171 |
<op><sh>e |
|
¨ |
umlaut (diaeresis) |
|
|
168 |
168 |
172 |
<op><sh> u |
|
≠ |
not equal to |
|
|
173 |
<op>= |
||
|
Æ |
uppercase AE diphthong (ligature) |
|
|
198 |
198 |
174 |
<op><sh> ’ |
|
Ø |
uppercase O, slash |
|
|
216 |
216 |
175 |
<op><sh> o |
|
∞ |
infinity |
|
|
176 |
<op>5 |
||
|
± |
plus-or-minus sign |
|
|
177 |
177 |
177 |
<op><sh> = |
|
≤ |
less-than or equal to |
|
|
178 |
<op>, |
||
|
≥ |
greater-than or equal to |
|
|
179 |
<op>. |
||
|
¥ |
yen sign |
|
|
165 |
165 |
180 |
<op>y |
|
µ |
micro sign |
|
|
181 |
181 |
181 |
<op>m |
|
∂ |
partial differential (del) |
|
|
182 |
<op>d |
||
|
∑ |
n-ary summation (greek large sigma) |
|
|
183 |
<op>w |
||
|
∏ |
n-ary product (product sign; greek large pi) |
|
|
184 |
<op><sh>p |
||
|
π |
greek lowercase pi |
|
|
185 |
<op>p |
||
|
∫ |
integral |
|
|
186 |
<op>b |
||
|
ª |
ordinal indicator, feminine |
|
|
170 |
170 |
187 |
<op>9 |
|
º |
ordinal indicator, masculine |
|
|
186 |
186 |
188 |
<op>0 |
|
Ω |
greek uppercase omega |
|
|
189 |
<op>z |
||
|
æ |
lowercase ae diphthong (ligature) |
|
|
230 |
230 |
190 |
<op>’ |
|
ø |
lowercase o, slash |
|
|
248 |
248 |
191 |
<op>o |
|
¿ |
inverted question mark |
|
|
191 |
191 |
192 |
<op><sh> / |
|
¡ |
inverted exclamation mark |
|
|
161 |
161 |
193 |
<op>1 |
|
¬ |
not sign |
|
|
172 |
172 |
194 |
<op>l |
|
√ |
square root (radical sign) |
|
|
195 |
<op>v |
||
|
ƒ |
latin small f with hook (function or florin) |
|
|
131 |
196 |
<op>f |
|
|
≈ |
almost equal to (asymptotic to) |
|
|
197 |
<op>x |
||
|
Δ |
greek uppercase delta |
|
|
198 |
<op>j |
||
|
« |
angle quotation mark, left |
|
|
171 |
171 |
199 |
<op>\\ |
|
» |
angle quotation mark, right |
|
|
187 |
187 |
200 |
<op><sh> \\ |
|
… |
horizontal ellipsis (three dot leader) |
|
|
133 |
201 |
<op>; |
|
|
non-breaking space |
|
|
160 |
202 |
<op><sh> |
||
|
À |
uppercase A, grave accent |
|
|
192 |
192 |
203 |
<op>` A |
|
à |
uppercase A, tilde |
|
|
195 |
195 |
204 |
<op>n A |
|
Õ |
uppercase O, tilde |
|
|
213 |
213 |
205 |
<op>n O |
|
Œ |
latin uppercase ligature OE |
|
|
140 |
206 |
<op><sh>q |
|
|
œ |
latin lowercase ligature oe |
|
|
156 |
207 |
<op>q |
|
|
– |
en dash |
|
|
150 |
208 |
<op>- |
|
|
— |
em dash |
|
|
151 |
209 |
<op><sh>- |
|
|
“ |
left double quotation mark |
|
|
147 |
210 |
<op>[ |
|
|
” |
right double quotation mark |
|
|
148 |
211 |
<op><sh>[ |
|
|
‘ |
left single quotation mark |
|
|
145 |
212 |
<op>] |
|
|
’ |
right single quotation mark |
|
|
146 |
213 |
<op><sh>] |
|
|
÷ |
divide sign |
|
|
247 |
247 |
214 |
<op>/ |
|
◊ |
lozenge |
|
|
215 |
<op><sh>v |
||
|
ÿ |
lowercase y, diaeresis (umlaut) |
|
|
255 |
255 |
216 |
<op>u y |
|
Ÿ |
latin uppercase Y with diaeresis |
|
|
159 |
217 |
<op>u Y |
|
|
⁄ |
fraction slash |
|
|
218 |
<op><sh>1 |
||
|
¤ |
general currency sign |
|
|
164 |
164 |
219 |
<op><sh> 2 |
|
‹ |
single left-pointing angle quotation mark |
|
|
139 |
220 |
<op><sh>3 |
|
|
› |
single right-pointing angle quotation mark |
|
|
155 |
221 |
<op><sh>4 |
|
|
fi |
ligature fi |
|
|
222 |
<op><sh>5 |
||
|
fl |
ligature fl |
|
|
223 |
<op><sh>6 |
||
|
‡ |
double dagger |
|
|
135 |
224 |
<op><sh>7 |
|
|
· |
middle dot |
|
|
183 |
183 |
225 |
<op><sh> 9 |
|
‚ |
single low-9 quotation mark |
|
|
130 |
226 |
<op><sh>0 |
|
|
„ |
double low-9 quotation mark |
|
|
132 |
227 |
<op><sh>w |
|
|
‰ |
per mille sign |
|
|
137 |
228 |
<op><sh>r |
|
|
 |
uppercase A, circumflex accent |
|
|
194 |
194 |
229 |
<op><sh> m |
|
Ê |
uppercase E, circumflex accent |
|
|
202 |
202 |
230 |
<op>i E |
|
Á |
uppercase A, acute accent |
|
|
193 |
193 |
231 |
<op>y |
|
Ë |
uppercase E, diaeresis (umlaut) |
|
|
203 |
203 |
232 |
<op>u E |
|
È |
uppercase E, grave accent |
|
|
200 |
200 |
233 |
<op>` E |
|
Í |
uppercase I, acute accent |
|
|
205 |
205 |
234 |
<op><sh> s |
|
Î |
uppercase I, circumflex accent |
|
|
206 |
206 |
235 |
<op><sh> d |
|
Ï |
uppercase I, diaeresis (umlaut) |
|
|
207 |
207 |
236 |
<op><sh> f |
|
Ì |
uppercase I, grave accent |
|
|
204 |
204 |
237 |
<op>` I |
|
Ó |
uppercase O, acute accent |
|
|
211 |
211 |
238 |
<op><sh> h |
|
Ô |
uppercase O, circumflex accent |
|
|
212 |
212 |
239 |
<op><sh> j |
|
|
Apple logo |
|
|
240 |
<op><sh>k |
||
|
Ò |
uppercase O, grave accent |
|
|
210 |
210 |
241 |
<op><sh> l |
|
Ú |
uppercase U, acute accent |
|
|
218 |
218 |
242 |
<op><sh>; |
|
Û |
uppercase U, circumflex accent |
|
|
219 |
219 |
243 |
<op>i U |
|
Ù |
uppercase U, grave accent |
|
|
217 |
217 |
244 |
<op>` U |
|
¹ |
superscript 1 |
|
|
185 |
185 |
245 |
<op><sh>b |
|
ˆ |
modifier letter circumflex accent |
|
|
136 |
246 |
<op><sh>i |
|
|
˜ |
small tilde |
|
|
152 |
247 |
<op><sh>n |
|
|
¯ |
macron |
|
|
175 |
175 |
248 |
<op><sh> , |
|
˘ |
breve |
|
|
249 |
<op><sh>. |
||
|
˙ |
dot above |
|
|
250 |
<op>h |
||
|
˚ |
ring above |
|
|
251 |
<op>k |
||
|
¸ |
cedilla |
|
|
184 |
184 |
252 |
<op><sh> z |
|
˝ |
double acute accent |
|
|
253 |
<op><sh>g |
||
|
˛ |
ogonek |
|
|
254 |
<op>x |
||
|
ˇ |
caron |
|
|
255 |
<op><sh>t |
||
|
⅓ |
small 1/3 fraction (one third) |
|
|||||
|
⅔ |
small 2/3 fraction (two thirds) |
|
|||||
|
⅔ |
small 2/3 fraction (two thirds) |
|
|||||
|
⅕ |
small 1/5 fraction (one fifth) |
|
|||||
|
⅖ |
small 2/5 fraction (two fifths) |
|
|||||
|
⅗ |
small 3/5 fraction (three fifths) |
|
|||||
|
⅘ |
small 4/5 fraction (four fifths) |
|
|||||
|
⅙ |
small 1/6 fraction (one sixth) |
|
|||||
|
⅚ |
small 5/6 fraction (five sixths) |
|
|||||
|
⅛ |
small 1/8 fraction (one eighth) |
|
|||||
|
⅜ |
small 3/8 fraction (three eighths) |
|
|||||
|
⅝ |
small 5/8 fraction (five eighths) |
|
|||||
|
⅞ |
small 7/8 fraction (seven eighths) |
|
Sources:
- Griswold, Ralph E. and Madge T. Griswold, The Icon Programming Language, 3rd ed. Peer to Peer, 1997, as quoted in
» www.cs.arizona.edu/patterns/weaving/webdocs/gre_char.pdfby Ralph Griswold, University of Arizona. - "Character entity references in HTML 4" (Section 24 of HTML 4.01 Specification: W3C Recommendation), by the World Wide Web Consortium; 1999.12.24;
» http://www.w3.org/TR/html4/sgml/entities.html. - "ASCII Extended Character Set, Macintosh", by Dawn Rorvik, Evergreen State College; 2003.05.20;
» http://www.evergreen.edu/biophysics/technotes/program/ascii_ext-mac.htm.