<?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>web development helpdesk &#187; ascii</title>
	<atom:link href="http://helpdesk.objects.com.au/tag/ascii/feed" rel="self" type="application/rss+xml" />
	<link>http://helpdesk.objects.com.au</link>
	<description>objects quality - the visible difference</description>
	<lastBuildDate>Sun, 17 Jul 2011 12:27:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>How to convert unicode string to ascii</title>
		<link>http://helpdesk.objects.com.au/java/how-to-convert-unicode-string-to-ascii?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-convert-unicode-string-to-ascii</link>
		<comments>http://helpdesk.objects.com.au/java/how-to-convert-unicode-string-to-ascii#comments</comments>
		<pubDate>Tue, 22 Feb 2011 01:34:53 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[ascii]]></category>
		<category><![CDATA[decomposition]]></category>
		<category><![CDATA[Normalizer]]></category>
		<category><![CDATA[string]]></category>
		<category><![CDATA[unicode]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=1772</guid>
		<description><![CDATA[Unicode string can contain lots lots of characters we don&#8217;t always want to deal with. If you know specifically what characters you want to get rid of then you can use replaceAll() to get rid of them. But for a more general solution Java provides the java.text.Normalizer class. The Normalizer class transforms Unicode text into [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-to-convert-unicode-string-to-ascii/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to convert a hex string to an ASCII character?</title>
		<link>http://helpdesk.objects.com.au/java/how-to-convert-a-hex-string-to-an-ascii-character?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-convert-a-hex-string-to-an-ascii-character</link>
		<comments>http://helpdesk.objects.com.au/java/how-to-convert-a-hex-string-to-an-ascii-character#comments</comments>
		<pubDate>Tue, 05 May 2009 01:56:03 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[ascii]]></category>
		<category><![CDATA[char]]></category>
		<category><![CDATA[hex]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=932</guid>
		<description><![CDATA[If you have a hex value as a string and you need the ASCII character that corresponds to that value then you need to parse your string to get its value. Once you have its value it is a simple cast to convert it to an ASCII character eg. 4A (hex) -> 74 (dec) -> [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-to-convert-a-hex-string-to-an-ascii-character/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I get the int value of a character?</title>
		<link>http://helpdesk.objects.com.au/java/how-do-i-get-the-int-value-of-a-character?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-do-i-get-the-int-value-of-a-character</link>
		<comments>http://helpdesk.objects.com.au/java/how-do-i-get-the-int-value-of-a-character#comments</comments>
		<pubDate>Tue, 23 Sep 2008 23:26:21 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[ascii]]></category>
		<category><![CDATA[char]]></category>
		<category><![CDATA[int]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=220</guid>
		<description><![CDATA[By simply casting it to an int. char c = &#039;A&#039;; int value = (int) c; Related posts: How do I get the ASCII value of a character? By simply casting the char to an int. char c... How do I convert an ASCII value to a character? By casting the integer ASCII value to [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-do-i-get-the-int-value-of-a-character/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I get the ASCII value of a character?</title>
		<link>http://helpdesk.objects.com.au/java/how-do-i-get-the-ascii-value-of-a-character?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-do-i-get-the-ascii-value-of-a-character</link>
		<comments>http://helpdesk.objects.com.au/java/how-do-i-get-the-ascii-value-of-a-character#comments</comments>
		<pubDate>Mon, 08 Sep 2008 11:01:51 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[ascii]]></category>
		<category><![CDATA[char]]></category>
		<category><![CDATA[conversion]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=104</guid>
		<description><![CDATA[By simply casting the char to an int. char c = &#039;A&#039;; int asciiValue = (int) c; Related posts: How do I convert an ASCII value to a character? By casting the integer ASCII value to a char. int... How to convert a hex string to an ASCII character? If you have a hex value [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-do-i-get-the-ascii-value-of-a-character/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I convert an ASCII value to a character?</title>
		<link>http://helpdesk.objects.com.au/java/how-do-i-convert-an-ascii-value-to-a-character?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-do-i-convert-an-ascii-value-to-a-character</link>
		<comments>http://helpdesk.objects.com.au/java/how-do-i-convert-an-ascii-value-to-a-character#comments</comments>
		<pubDate>Fri, 05 Sep 2008 08:26:59 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[ascii]]></category>
		<category><![CDATA[char]]></category>
		<category><![CDATA[conversion]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=93</guid>
		<description><![CDATA[By casting the integer ASCII value to a char. int asciiValue = 65; char ch = (char) asciiValue; Related posts: How to convert a hex string to an ASCII character? If you have a hex value as a string and... How do I get the ASCII value of a character? By simply casting the char [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-do-i-convert-an-ascii-value-to-a-character/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How do I convert an int to a char?</title>
		<link>http://helpdesk.objects.com.au/java/how-do-i-convert-an-int-to-a-char?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-do-i-convert-an-int-to-a-char</link>
		<comments>http://helpdesk.objects.com.au/java/how-do-i-convert-an-int-to-a-char#comments</comments>
		<pubDate>Sat, 23 Aug 2008 23:22:50 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[ascii]]></category>
		<category><![CDATA[char]]></category>
		<category><![CDATA[int]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=215</guid>
		<description><![CDATA[By simply casting the int value to a char. int asciiValue = 65; char ch = (char) asciiValue; Related posts: How do I convert an ASCII value to a character? By casting the integer ASCII value to a char. int... How do I get the ASCII value of a character? By simply casting the char [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-do-i-convert-an-int-to-a-char/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

