<?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>Today-date.com</title>
	<atom:link href="https://today-date.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://today-date.com</link>
	<description>What is today&#039;s date?</description>
	<lastBuildDate>Mon, 07 Nov 2022 13:10:09 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.3</generator>

<image>
	<url>https://today-date.com/wp-content/uploads/today-date-logo_03-150x150.jpg</url>
	<title>Today-date.com</title>
	<link>https://today-date.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Today&#8217;s date in Australia</title>
		<link>https://today-date.com/todays-date-in-australia/</link>
		
		<dc:creator><![CDATA[Today's date]]></dc:creator>
		<pubDate>Mon, 07 Nov 2022 13:07:52 +0000</pubDate>
				<category><![CDATA[Countries]]></category>
		<guid isPermaLink="false">https://today-date.com/?p=683</guid>

					<description><![CDATA[<p>Time and date in Australia. Canadian timezone is UTC +8 to +11. See today&#8217;s date and current time in Australia.</p>
The post <a href="https://today-date.com/todays-date-in-australia/">Today’s date in Australia</a> first appeared on <a href="https://today-date.com">Today-date.com</a>.]]></description>
										<content:encoded><![CDATA[<p>Time and date in Australia. Canadian timezone is UTC +8 to +11. See today&#8217;s date and current time in Australia.</p>



<script>
const datumPlus10 = new Date().toLocaleString("AU", {timeZone: "Australia/Sydney"});
console.log(datumPlus10);
document.write(`<strong>Today's time and date (UTC +10).</strong> <h2>${datumPlus10}</h2>`)
</script>The post <a href="https://today-date.com/todays-date-in-australia/">Today’s date in Australia</a> first appeared on <a href="https://today-date.com">Today-date.com</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Today&#8217;s date in Canada</title>
		<link>https://today-date.com/todays-date-in-canada/</link>
		
		<dc:creator><![CDATA[Today's date]]></dc:creator>
		<pubDate>Sun, 06 Nov 2022 15:22:47 +0000</pubDate>
				<category><![CDATA[Countries]]></category>
		<guid isPermaLink="false">https://today-date.com/?p=661</guid>

					<description><![CDATA[<p>Time and date in Canada. Canadian timezone is UTC -8 to -3.30. See today&#8217;s date and current time in Canada.</p>
The post <a href="https://today-date.com/todays-date-in-canada/">Today’s date in Canada</a> first appeared on <a href="https://today-date.com">Today-date.com</a>.]]></description>
										<content:encoded><![CDATA[<p>Time and date in Canada. Canadian timezone is UTC -8 to -3.30. See today&#8217;s date and current time in Canada.</p>



<script>
const datum = new Date().toLocaleString("en-US", {timeZone: "America/New_York"});
console.log(datum);
document.write(`<strong>Today's time and date (UTC -5) in numerical form with slashes.</strong> <h2>${datum}</h2>`)
</script>The post <a href="https://today-date.com/todays-date-in-canada/">Today’s date in Canada</a> first appeared on <a href="https://today-date.com">Today-date.com</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Days from now</title>
		<link>https://today-date.com/days-from-now/</link>
		
		<dc:creator><![CDATA[Today's date]]></dc:creator>
		<pubDate>Thu, 07 Nov 2019 14:54:26 +0000</pubDate>
				<category><![CDATA[Number of the week]]></category>
		<guid isPermaLink="false">http://today-date.com/?p=312</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[<script type="text/javascript">
var mydate=new Date(Date.now() + 1000 * 60 * 60 * 24 * 1);
var year=mydate.getYear()
if (year < 1000)
year+=1900
var day=mydate.getDay()
var month=mydate.getMonth()
var daym=mydate.getDate()

if (daym<10)
daym="0"+daym
var dayarray=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var montharray=new Array("January","February","March","April","May","June","July","August","September","October","November","December")

document.write("<h2>1-10 days from now</h2>");

document.write("<ul><li><strong>1 day from now</strong> it will be <span class='future'>"+dayarray[day]+", "+montharray[month]+" "+daym+", "+year+" </span></li>")


var mydate=new Date(Date.now() + 1000 * 60 * 60 * 24 * 2);
var year=mydate.getYear()
if (year < 1000)
year+=1900
var day=mydate.getDay()
var month=mydate.getMonth()
var daym=mydate.getDate()

if (daym<10)
daym="0"+daym
var dayarray=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var montharray=new Array("January","February","March","April","May","June","July","August","September","October","November","December")

document.write("<ul><li><strong>2 days from now</strong> it will be <span class='future'>"+dayarray[day]+", "+montharray[month]+" "+daym+", "+year+" </span></li>")


var mydate=new Date(Date.now() + 1000 * 60 * 60 * 24 * 3);
var year=mydate.getYear()
if (year < 1000)
year+=1900
var day=mydate.getDay()
var month=mydate.getMonth()
var daym=mydate.getDate()

if (daym<10)
daym="0"+daym
var dayarray=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var montharray=new Array("January","February","March","April","May","June","July","August","September","October","November","December")

document.write("<ul><li><strong>3 days from now</strong> it will be <span class='future'>"+dayarray[day]+", "+montharray[month]+" "+daym+", "+year+" </span></li></ul>")
</script>



<p></p>The post <a href="https://today-date.com/days-from-now/">Days from now</a> first appeared on <a href="https://today-date.com">Today-date.com</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>41</title>
		<link>https://today-date.com/this-weeks-number-is-41/</link>
		
		<dc:creator><![CDATA[Today's date]]></dc:creator>
		<pubDate>Fri, 09 Oct 2015 12:28:41 +0000</pubDate>
				<category><![CDATA[Number of the week]]></category>
		<guid isPermaLink="false">http://today-date.com/?p=134</guid>

					<description><![CDATA[<p>This weeks number is 41. Weeknumber 41 year 2015. Sunday October 4 &#8211; Saturday October 10.</p>
The post <a href="https://today-date.com/this-weeks-number-is-41/">41</a> first appeared on <a href="https://today-date.com">Today-date.com</a>.]]></description>
										<content:encoded><![CDATA[<p><strong>This weeks number is 41.</strong></p>
<p>Weeknumber 41 year 2015.<br />
Sunday October 4 &#8211; Saturday October 10.<br />
</p>The post <a href="https://today-date.com/this-weeks-number-is-41/">41</a> first appeared on <a href="https://today-date.com">Today-date.com</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>40</title>
		<link>https://today-date.com/this-weeks-number-is-40/</link>
		
		<dc:creator><![CDATA[Today's date]]></dc:creator>
		<pubDate>Sun, 27 Sep 2015 12:36:09 +0000</pubDate>
				<category><![CDATA[Number of the week]]></category>
		<guid isPermaLink="false">http://today-date.com/?p=136</guid>

					<description><![CDATA[<p>This weeks number is 40. Weeknumber 40 year 2015. Sunday September 27 – Saturday October 3.</p>
The post <a href="https://today-date.com/this-weeks-number-is-40/">40</a> first appeared on <a href="https://today-date.com">Today-date.com</a>.]]></description>
										<content:encoded><![CDATA[<p><strong>This weeks number is 40.</strong></p>
<p>Weeknumber 40 year 2015.<br />
Sunday September 27 – Saturday October 3.<br />
</p>The post <a href="https://today-date.com/this-weeks-number-is-40/">40</a> first appeared on <a href="https://today-date.com">Today-date.com</a>.]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
