<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Zero to One-Eighty &#187; windows</title>
	<atom:link href="http://ztoe.net/tag/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://ztoe.net</link>
	<description>by Adrian Cooke</description>
	<lastBuildDate>Thu, 10 May 2012 11:52:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Using the keyboard for special characters</title>
		<link>http://ztoe.net/feeder/?FeederAction=clicked&#038;feed=Articles+%28RSS2%29&#038;seed=http%3A%2F%2Fztoe.net%2F2009%2F03%2Fspecial-characters%2F&#038;seed_title=Using+the+keyboard+for+special+characters</link>
		<comments>http://ztoe.net/feeder/?FeederAction=clicked&#038;feed=Articles+%28RSS2%29&#038;seed=http%3A%2F%2Fztoe.net%2F2009%2F03%2Fspecial-characters%2F&#038;seed_title=Using+the+keyboard+for+special+characters#comments</comments>
		<pubDate>Sun, 29 Mar 2009 00:04:12 +0000</pubDate>
		<dc:creator>Adrian Cooke</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[characters]]></category>
		<category><![CDATA[entities]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[shortcuts]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[unicode]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://ztoe.net/?p=1052</guid>
		<description><![CDATA[How to type certain special characters, or replace them with reference codes in HTML.
Related posts:<ul>
<li><a href='http://ztoe.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fztoe.net%2F2008%2F11%2Fie-unicode-freakout-boxes-css%2F&amp;seed_title=IE%2C+Unicode%2C+freakout+boxes+and+CSS' rel='bookmark' title='IE, Unicode, freakout boxes and CSS'>IE, Unicode, freakout boxes and CSS</a></li>
<li><a href='http://ztoe.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fztoe.net%2F2008%2F05%2Fstyling-blockquote%2F&amp;seed_title=Styling+the+blockquote+element' rel='bookmark' title='Styling the blockquote element'>Styling the blockquote element</a></li>
<li><a href='http://ztoe.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fztoe.net%2F2008%2F10%2Fshortwave%2F&amp;seed_title=Shortwave' rel='bookmark' title='Shortwave'>Shortwave</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p>This is to make my life easier; maybe it will help occasional others. There are some comprehensive tables available out there covering the full range of special characters,<sup>&dagger;</sup> but these are the ones I&#8217;m always asked about by web content editors when their browsers retch up freakout boxes. This is also comes up when working with text in Photoshop, and writing in text input fields on Delicious and Twitter, hence the OS-based keystroke combinations.</p>
<table>
<caption>Using the keyboard to produce certain special characters</caption>
<tr>
<th scope="col">Character</th>
<th scope="col">Mac keystrokes</th>
<th scope="col">Windows keystrokes</th>
<th scope="col" colspan="2">HTML name and number references</th>
</tr>
<tr>
<th scope="row">Left single quotation mark (&lsquo;)</th>
<td>option + ]</td>
<td>alt + 0145</td>
<td><code>&amp;lsquo;</code></td>
<td><code>&amp;#8216;</code></td>
</tr>
<tr>
<th scope="row">Right single quotation mark (&rsquo;)</th>
<td>option + shift + ]</td>
<td>alt + 0146</td>
<td><code>&amp;rsquo;</code></td>
<td><code>&amp;#8217;</code></td>
</tr>
<tr>
<th scope="row">Left double quotation mark (&ldquo;)</th>
<td>option + [</td>
<td>alt + 0147</td>
<td><code>&amp;ldquo;</code></td>
<td><code>&amp;#8220;</code></td>
</tr>
<tr>
<th scope="row">Right double quotation mark (&rdquo;)</th>
<td>option + shift + [</td>
<td>alt + 0148</td>
<td><code>&amp;rdquo;</code></td>
<td><code>&amp;#8221;</code></td>
</tr>
<tr>
<th scope="row">En dash (&ndash;)</th>
<td>option + hyphen</td>
<td>alt + 0150</td>
<td><code>&amp;ndash;</code></td>
<td><code>&amp;#8211;</code></td>
</tr>
<tr>
<th scope="row">Em dash (&mdash;)</th>
<td>option + shift + hyphen</td>
<td>alt + 0151</td>
<td><code>&amp;mdash;</code></td>
<td><code>&amp;#8212;</code></td>
</tr>
<tr>
<th scope="row">Lowercase a with acute accent (&aacute;)</th>
<td>(option + e) + a</td>
<td>alt + 0225</td>
<td><code>&amp;aacute;</code></td>
<td><code>&amp;#225;</code></td>
</tr>
<tr>
<th scope="row">Lowercase e with acute accent (&eacute;)</th>
<td>(option + e) + e</td>
<td>alt + 0233</td>
<td><code>&amp;eacute;</code></td>
<td><code>&amp;#223;</code></td>
</tr>
<tr>
<th scope="row">Lowercase e with grave accent (&egrave;)</th>
<td>(option + `) + e</td>
<td>alt + 0232</td>
<td><code>&amp;egrave;</code></td>
<td><code>&amp;#232;</code></td>
</tr>
<tr>
<th scope="row">Lowercase u with umlaut (&uuml;)</th>
<td>(option + u) + u</td>
<td>alt + 0252</td>
<td><code>&amp;uuml;</code></td>
<td><code>&amp;#220;</code></td>
</tr>
</table>
<p><small>&dagger; See for example the W3C&#8217;s <a href="http://www.w3.org/TR/html4/sgml/entities.html">Character entity references in HTML 4</a>, this multiplatform table of <a href="http://home.earthlink.net/~awinkelried/keyboard_shortcuts.html">keyboard shortcuts for special characters</a>, this comparison of <a href="http://www.xvsxp.com/misc/keyboard.php">Mac OS X and Windows XP keyboard</a> functions, and this table of <a href="http://cimar.mae.ufl.edu/~carl/eml2023_spring09/pages/notes/Special-Character-Alt-Code-Reference-Card.pdf">Windows alt code references</a> (PDF file).</small></p>
<p>Related posts:<ul>
<li><a href='http://ztoe.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fztoe.net%2F2008%2F11%2Fie-unicode-freakout-boxes-css%2F&amp;seed_title=IE%2C+Unicode%2C+freakout+boxes+and+CSS' rel='bookmark' title='IE, Unicode, freakout boxes and CSS'>IE, Unicode, freakout boxes and CSS</a></li>
<li><a href='http://ztoe.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fztoe.net%2F2008%2F05%2Fstyling-blockquote%2F&amp;seed_title=Styling+the+blockquote+element' rel='bookmark' title='Styling the blockquote element'>Styling the blockquote element</a></li>
<li><a href='http://ztoe.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fztoe.net%2F2008%2F10%2Fshortwave%2F&amp;seed_title=Shortwave' rel='bookmark' title='Shortwave'>Shortwave</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://ztoe.net/feeder/?FeederAction=clicked&#038;feed=Articles+%28RSS2%29&#038;seed=http%3A%2F%2Fztoe.net%2F2009%2F03%2Fspecial-characters%2F&#038;seed_title=Using+the+keyboard+for+special+characters/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Links: captioning, accessibility, reading, etc.</title>
		<link>http://ztoe.net/feeder/?FeederAction=clicked&#038;feed=Articles+%28RSS2%29&#038;seed=http%3A%2F%2Fztoe.net%2F2008%2F11%2Fcaptioning-accessibility-reading%2F&#038;seed_title=Links%3A+captioning%2C+accessibility%2C+reading%2C+etc.</link>
		<comments>http://ztoe.net/feeder/?FeederAction=clicked&#038;feed=Articles+%28RSS2%29&#038;seed=http%3A%2F%2Fztoe.net%2F2008%2F11%2Fcaptioning-accessibility-reading%2F&#038;seed_title=Links%3A+captioning%2C+accessibility%2C+reading%2C+etc.#comments</comments>
		<pubDate>Mon, 24 Nov 2008 03:28:19 +0000</pubDate>
		<dc:creator>Adrian Cooke</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[collaboration]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[reading]]></category>
		<category><![CDATA[regulation]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[standards]]></category>
		<category><![CDATA[teaching]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[the web]]></category>
		<category><![CDATA[ui]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://ztoe.net/?p=508</guid>
		<description><![CDATA[Links round-up and associated commentary.
Related posts:<ul>
<li><a href='http://ztoe.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fztoe.net%2F2008%2F11%2Fblue-beanie-genie%2F&amp;seed_title=Blue+beanie+Genie' rel='bookmark' title='Blue beanie Genie'>Blue beanie Genie</a></li>
<li><a href='http://ztoe.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fztoe.net%2F2008%2F11%2Fthe-accessible-presidency%2F&amp;seed_title=The+accessible+presidency' rel='bookmark' title='The accessible presidency'>The accessible presidency</a></li>
<li><a href='http://ztoe.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fztoe.net%2F2008%2F07%2Fx-and-accessibility%2F&amp;seed_title=X+and+accessibility' rel='bookmark' title='X and accessibility'>X and accessibility</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<dl>
<dt id="captioning"><a href="http://www.alistapart.com/articles/thisishowthewebgetsregulated">This is how the web gets regulated</a> <small><a href="#captioning">#</a></small></dt>
<dd>Timely article on A List Apart by Joe Clark about the (appalling) state of captioning on the web, and the possibility of a legislative requirement soon in Canada and Australia. It&#8217;s pretty dismal currently despite the fact that WCAG+Samurai and WCAG 2.0 require (yes) captioning for video. He mentions, and criticises, YouTube&#8217;s closed captioning model.</dd>
<dt id="beanie"><a href="http://www.zeldman.com/2008/11/19/blue-beanie-day-ii/">Blue Beanie Day II</a> <small><a href="#beanie">#</a></small></dt>
<dd>Blue Beanie Day II is coming up. Show your support for web standards and accessibility by wearing a blue beanie on <strong>Friday, November 28,</strong> wherever you lurk on the web. Here&#8217;s <a href="http://www.flickr.com/groups/bluebeanieday2007/pool/">some photos</a> from the inaugural BBD last year.</dd>
<dt id="readable"><a href="http://informationarchitects.jp/100e2r/">The 100% easy-2-read standard</a> <small><a href="#readable">#</a></small></dt>
<dd>Another touchstone article about usability and web text by Oliver Reichenstein, author of the reasonably infamous &#8220;Web Design is 95% Typography&#8221; essay. This one is just as thoughtful, more practical and very easy to read :P (Via <a href="http://joeclark.tumblr.com/post/61072717">Joe Clark</a>.)</dd>
<dt id="editors"><a href="http://notepad-plus.sourceforge.net/uk/site.htm">Notepad++</a> and <a href="http://www.e-texteditor.com/">E Text Editor</a> <small><a href="#editors">#</a></small></dt>
<dd>I&#8217;m looking for a Windows text editor for occasional use on my work PC. According to a couple of Mac-to-Windows switcher threads on Ask MeFi, Notepad++ (free, donations accepted) is pretty popular. E Text Editor, &#8220;the power of TextMate on Windows,&#8221; looks pretty nice in the promo video, especially the way that code completion works in HTML mode (US$35).</dd>
<dt id="ffffound"><a href="http://www.37signals.com/svn/posts/1409-heres-a-demo-of-some-thoughtful-ui-on-ffffoundcom">Some thoughtful UI on ffffound.com</a> <small><a href="#ffffound">#</a></small></dt>
<dd>Ryan Singer looks at Ffffound&#8217;s use of keyboard shortcuts to navigate images on the site. &#8220;J&#8221; skips you down the page to the next image, &#8220;K&#8221; back up, and if you get to the end of the page the same key requests the next or previous page instead. Rad. (<a href="http://daringfireball.net/linked/2008/11/20/ffffound-navigation">Via John Gruber</a>, who notes that the same shortcuts work within posts on The Big Picture.)</dd>
<dt id="smc"><a href="http://socialmediaclassroom.com/">Social Media Classroom</a> <small><a href="#smc">#</a></small></dt>
<dd>SMC is a Drupal application that provides a set of tools for web-based collaboration (wikis, blogs, media collections, Twitter and Delicious integration). It was developed by Howard Rheingold with the goal of increasing and facilitating media literacy. It looks like it would make Drupal an even better tool for communities who need to meet and work together online. My friend <a href="http://briandigital.com/">Brian Christiansen</a> worked on the UI.</dd>
</dl>
<p>Related posts:<ul>
<li><a href='http://ztoe.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fztoe.net%2F2008%2F11%2Fblue-beanie-genie%2F&amp;seed_title=Blue+beanie+Genie' rel='bookmark' title='Blue beanie Genie'>Blue beanie Genie</a></li>
<li><a href='http://ztoe.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fztoe.net%2F2008%2F11%2Fthe-accessible-presidency%2F&amp;seed_title=The+accessible+presidency' rel='bookmark' title='The accessible presidency'>The accessible presidency</a></li>
<li><a href='http://ztoe.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fztoe.net%2F2008%2F07%2Fx-and-accessibility%2F&amp;seed_title=X+and+accessibility' rel='bookmark' title='X and accessibility'>X and accessibility</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://ztoe.net/feeder/?FeederAction=clicked&#038;feed=Articles+%28RSS2%29&#038;seed=http%3A%2F%2Fztoe.net%2F2008%2F11%2Fcaptioning-accessibility-reading%2F&#038;seed_title=Links%3A+captioning%2C+accessibility%2C+reading%2C+etc./feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.436 seconds -->

