
<?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>HTML &#8211; CodeInDotNet</title>
	<atom:link href="https://www.codeindotnet.com/category/html/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.codeindotnet.com</link>
	<description>C# Dot Net Programming tutorial &#38; code examples</description>
	<lastBuildDate>Tue, 02 Apr 2024 06:45:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.3</generator>

<image>
	<url>https://www.codeindotnet.com/wp-content/uploads/2021/04/SiteIcon.png</url>
	<title>HTML &#8211; CodeInDotNet</title>
	<link>https://www.codeindotnet.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Remove underline from Hyperlink link &#8211; HTML, CSS</title>
		<link>https://www.codeindotnet.com/remove-underline-from-link-html-css/</link>
					<comments>https://www.codeindotnet.com/remove-underline-from-link-html-css/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 28 Nov 2023 05:05:21 +0000</pubDate>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[CSS]]></category>
		<guid isPermaLink="false">https://www.codeindotnet.com/?p=6426</guid>

					<description><![CDATA[Hyperlinks allow users to navigate between different pages and websites, seamlessly. A hyperlink usually puts an underline to the text by default. You might want to remove the underline from the hyperlinked text as part of your web design. Remove Underline from Links &#8211; Different Ways Let&#8217;s explore different techniques to remove underlines from hyperlinks; [&#8230;]]]></description>
										<content:encoded><![CDATA[
<div id="PageInHoriAd1"></div>
<script>
fetch('https://www.codeindotnet.com/gads/PageInHoriAd1.txt')
	.then(response => response.text())
	.then(text => {
		document.getElementById('PageInHoriAd1').innerHTML = text;
	})
	.catch(error => {
		console.error('Error fetching manual PageInHoriAd1:', error);
	});
</script>



<p>Hyperlinks allow users to navigate between different pages and websites, seamlessly. A hyperlink usually puts an underline to the text by default. You might want to remove the underline from the hyperlinked text as part of your web design. </p>



<br>



<h2 class="wp-block-heading h2Cust1" id="remove-underline-from-links-different-ways"><strong>Remove Underline from Links &#8211; Different Ways</strong></h2>



<br>



<p>Let&#8217;s explore different techniques to remove underlines from hyperlinks;</p>



<br>



<h3 class="wp-block-heading hLBRed" id="1-css"><strong>1. CSS:</strong></h3>



<br>



<p>The most common and effective way to remove underlines from hyperlinks is by using CSS. Here&#8217;s a simple CSS snippet to remove underlines</p>



<br><div><b><i><u>code snippet:</u></i></b></div>



<pre class="pchl"><code>a {
  text-decoration: none;
}
</code></pre>



<br>



<p>This CSS code targets all <strong>anchor &lt;a&gt;</strong> elements and sets the <strong>text-decoration</strong> property to <strong>none</strong>, effectively removing the underline.</p>



<br><br><br>



<h3 class="wp-block-heading hLBRed" id="2-inline-style"><strong>2. Inline Style:</strong></h3>



<br>



<p>you can use inline styles directly within the HTML code.</p>



<br><div><b><i><u>code snippet:</u></i></b></div>



<pre class="pchl"><code>&lt;a style="text-decoration: none;" href="https://CodeInDotNet.com">Visit CodeInDotNet.com&lt;/a>
</code></pre>



<br>



<p>In this example, the <strong>style </strong>attribute is added directly to the <strong>&lt;a&gt;</strong> element, specifying &#8216;<strong>text-decoration: none;</strong>&#8216;.</p>



<br><br><br>



<h3 class="wp-block-heading hLBRed" id="3-pseudo-classes"><strong>3. Pseudo-Classes:</strong></h3>



<br>



<p>CSS pseudo-classes allow you to define styles for specific states of an element. For hyperlinks, the <strong>:hover</strong> pseudo-class is commonly used to define styles for when a user hovers over a link. To ensure the removal of underlines even on hover, you can use the following code:</p>



<br><div><b><i><u>code snippet:</u></i></b></div>



<pre class="pchl"><code>a, a:visited, a:hover, a:active {
  text-decoration: none;
}
</code></pre>



<br>



<p>This CSS rule targets various states of the hyperlink, ensuring that the underline is removed consistently.</p>



<br><br><div><b><i><u>screenshot:</u></i></b></div>



<figure class="wp-block-image size-full"><img decoding="async" width="302" height="163" src="https://www.codeindotnet.com/wp-content/uploads/2023/11/remove-underline-from-link-html-css.jpg" alt="remove underline from link html css" class="wp-image-6438" srcset="https://www.codeindotnet.com/wp-content/uploads/2023/11/remove-underline-from-link-html-css.jpg 302w, https://www.codeindotnet.com/wp-content/uploads/2023/11/remove-underline-from-link-html-css-300x163.jpg 300w" sizes="(max-width: 302px) 100vw, 302px" /></figure>



<div id="PageInAd1"></div>
<script>
fetch('https://www.codeindotnet.com/gads/PageInAd1.txt')
	.then(response => response.text())
	.then(text => {
		document.getElementById('PageInAd1').innerHTML = text;
	})
	.catch(error => {
		console.error('Error fetching manual PageInAd1:', error);
	});
</script>



<br>
<script src="/my-js/latesttop10post.js" type="text/javascript"></script>
<input type="hidden" id="cids" value="112,123,129,138,103,104">
<div id="latestPostlist"></div>
<br>



<div class="wp-block-rank-math-toc-block toc-cust" id="rank-math-toc"><h2>Table of Contents</h2><nav><ul><li><a href="#remove-underline-from-links-different-ways">Remove Underline from Links &#8211; Different Ways</a><ul><li><a href="#1-css">1. CSS:</a></li><li><a href="#2-inline-style">2. Inline Style:</a></li><li><a href="#3-pseudo-classes">3. Pseudo-Classes:</a></li></ul></li></ul></nav></div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.codeindotnet.com/remove-underline-from-link-html-css/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Insert tab spaces characters in text &#8211; HTML CSS</title>
		<link>https://www.codeindotnet.com/insert-tab-white-spaces-in-text-html-css-code/</link>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sat, 25 Mar 2023 22:35:04 +0000</pubDate>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[CSS]]></category>
		<guid isPermaLink="false">https://www.codeindotnet.com/?p=2991</guid>

					<description><![CDATA[White Spaces can be added in three ways: The most recommendable solutions are: Space Using HTML Syntax 4 ways to insert Space via HTML code: 1. Single Space (&#38;nbsp;) &#38;nbsp &#8211; This is a non-breaking space that generates single or regular spaces. This is also called fixed spaces that cannot be broken by word wrap.Use [&#8230;]]]></description>
										<content:encoded><![CDATA[
<br>



<div>White Spaces can be added in three ways:</div>



<ul class="wp-block-list">
<li><a href="#htmlsyntax"><strong>HTML Syntax</strong></a></li>



<li><a href="#tabsizeprop" data-type="internal" data-id="#tabsizeprop"><strong>&lt;pre&gt; element, tab-size property</strong></a></li>



<li><a href="#cssstyles"><strong>CSS Styles</strong></a></li>
</ul>



<div>The most <span style="background-color: #90ee90; padding: 0.0625rem 0.3125rem; border-radius:0.625rem">recommendable solutions</span> are: </div>



<ul class="wp-block-list">
<li><a href="#pretagapproach" data-type="internal" data-id="#pretagapproach"><strong>&lt;pre&gt; element tag</strong></a></li>



<li><a href="#cssstyles" data-type="internal" data-id="#cssstyles"><strong>margin or padding spaces</strong></a></li>
</ul>



<br>



<h2 id="htmlsyntax" style="
    font-family: segoe ui,Work Sans,Open Sans,Helvetica,Arial,sans-serif !important;
    border-left: 0.375rem solid #ff0000;
    padding: 0.375rem;
    box-shadow: 0rem 0.125rem 0.625rem 0rem #cac9c9;
    margin-bottom: 1.25rem;
    border-radius: 0rem 0.625rem 0.625rem 0rem;
    font-weight: bold;">
Space Using HTML Syntax
</h2>



<p>4 ways to insert Space via HTML code:</p>



<h3 style="font-family: segoe ui,Work Sans,Open Sans,Helvetica,Arial,sans-serif !important;"><strong>1. Single Space (&amp;nbsp;)</strong></h3>



<p style="margin-top:0.625rem"><span class="spanHT">&amp;nbsp</span> &#8211; This is a non-breaking space that generates single or regular spaces. This is also called fixed spaces that cannot be broken by word wrap.<br>Use single-space syntax <span class="spanHT">&amp;nbsp;</span> multiple times in the text to make space wider.<br>You can also write &amp;nbsp; as &amp;#160.</p>



<div style="margin-bottom: 0.4375rem;">
<b><i>HTML syntax:</i></b>
<span style="background-color: beige; padding: 0.125rem 0.3125rem;">
&lt;p&gt;This is single ‘&amp;ensp;’ space.&lt;/p&gt;
</span>
</div>
<div>
<b><i>Output:</i></b> This is a single <span class="spanHT">&#8216;&nbsp;&#8216;</span> space.
</div>



<br>



<h3 style="font-family: segoe ui,Work Sans,Open Sans,Helvetica,Arial,sans-serif !important;"><strong>2. Double Space (&amp;ensp;)</strong></h3>



<p style="margin-top:0.625rem"><span class="spanHT">&amp;ensp;</span> &#8211; This is called &#8216;en&#8217; two spaces gap, and whitespace is normally twice the spaces of regular (single) space. It denotes half point size of the current font.</p>



<div style="margin-bottom: 0.4375rem;">
<b><i>HTML syntax:</i></b>
<span style="background-color: beige; padding: 0.125rem 0.3125rem;">
&lt;p&gt;This is double &#8216;&amp;ensp;&#8217; space.&lt;/p&gt;
</span>
</div>
<div>
<b><i>Output:</i></b> This is a double <span class="spanHT">&#8216; &#8217;</span> space.
</div>



<br>



<h3 style="font-family: segoe ui,Work Sans,Open Sans,Helvetica,Arial,sans-serif !important;"><strong>3. Four (4x) space gap (&amp;emsp;)</strong></h3>



<p style="margin-top:0.625rem"><span class="spanHT">&amp;emsp;</span> &#8211; ’em’ four spaces gap, is equal to the point size of the current font and typically as much as four times wider than the common regular space.</p>



<div style="margin-bottom: 0.4375rem;">
<b><i>HTML syntax:</i></b>
<span style="background-color: beige; padding: 0.125rem 0.3125rem;">
&lt;p&gt;This is four 4x &#8216;&amp;emsp;&#8217; space.&lt;/p&gt;
</span>
</div>
<div>
<b><i>Output:</i></b> This is a four 4x <span class="spanHT">&#8216; &#8217;</span> space.
</div>



<br>



<h3 style="font-family: segoe ui,Work Sans,Open Sans,Helvetica,Arial,sans-serif !important;"><strong>4. Narrow Space (&amp;thinsp;</strong>)</h3>



<p style="margin-top:0.938rem"><span class="spanHT">&amp;thinsp;</span> &#8211; this is called narrow space, which is usually more narrow than a regular space.</p>



<div style="margin-bottom: 0.4375rem;">
<b><i>HTML syntax:</i></b>
<span style="background-color: beige; padding: 0.125rem 0.3125rem;">
&lt;p&gt;This is narrow &#8216;&amp;thinsp;&#8217; space.&lt;/p&gt;
</span>
</div>
<div>
<b><i>Output:</i></b> This is a narrow <span class="spanHT">&#8216; &#8217;</span> space.
</div>



<br><br>



<h2 id="tabsizeprop" style="
    font-family: segoe ui,Work Sans,Open Sans,Helvetica,Arial,sans-serif !important;
    border-left: 0.375rem solid #ff0000;
    padding: 0.375rem;
    box-shadow: 0rem 0.125rem 0.625rem 0rem #cac9c9;
    margin-bottom: 1.25rem;
    border-radius: 0rem 0.625rem 0.625rem 0rem;
    font-weight: bold;">
Space Using &lt;pre&gt; element or tab-size property
</h2>



<p>Apply either of one approach, use text in &lt;pre&gt; element or set the tab-size property for &lt;pre&gt; element tag to render space in the text.</p>



<h3 id="pretagapproach" style="font-family: segoe ui,Work Sans,Open Sans,Helvetica,Arial,sans-serif !important;"><strong>1. &lt;pre&gt; tag Approach</strong></h3>



<p style="margin-top:0.938rem">Simply add tabs or multiple spaces in the inner text within &lt;pre&gt; element tag and that will be rendered in the same format. The &lt;pre&gt; element simply represents preformatted text.<br>WordPress provides a &#8216;code&#8217; block feature in its editing tool which uses the same &lt;pre&gt; element tag to render the pasted text like highlighting programming or script codes, and preserves the same format.<br>Highly <span style="background-color: #90ee90; padding: 0.0625rem 0.3125rem; border-radius:0.625rem">recommended</span> if you want to display multiple tabs, <b>spaces, and linebreaks</b> on the output page without breaking newlines &amp; whitespace characters.<br><br>
<b><i>HTML syntax:</i></b><br><span style="background-color: beige; padding: 0.125rem 0.3125rem;">
&lt;pre&gt; <br>&nbsp;&nbsp;your&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;text&nbsp; &nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;goes &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;here.<br>&lt;/pre&gt;</span>
<br><br>
<b><i>Output:</i></b><br>
&nbsp;&nbsp;your&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;text&nbsp; &nbsp;&nbsp;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;goes &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;here.
</p>



<br>



<h3 style="font-family: segoe ui,Work Sans,Open Sans,Helvetica,Arial,sans-serif !important;"><strong>2. tab-size property Approach</strong></h3>



<p style="margin-top:0.938rem">The tab-size property is used to specifiy the tab&#8217;s width size in HTML code. You need to change the value of tab character through tab-size property by using style.<br><b>Note:</b> you can also use <b>&amp;#9;</b> to denote as tab space.<br><br>
<b><i>CSS style code:</i></b><br><span style="background-color: beige; padding: 0.125rem 0.3125rem;">&lt;style&gt; .TabSpace { tab-size: 4; } &lt;/style&gt;<br>&lt;pre&gt; sample text &lt;/pre&gt;<br>&lt;pre&gt; sample<b>&amp;#9;</b>text &lt;/pre&gt;</span>
</p>



<div>Both approaches are shown in below sample code.<br><br><b><i>HTML code:</i></b></div>



<pre class="pchl"><code>&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
	&lt;style&gt;
		#tab1 {
		  -moz-tab-size: 4;
		  <b>tab-size: 4;</b>
		}
		.tab2 {
		  -moz-tab-size: 12;
		  tab-size: 12;
		}
	&lt;/style&gt;
&lt;/head&gt;

&lt;body&gt;
	&lt;h2&gt;pre tab-size property example&lt;/h2&gt;

&lt;pre&gt;<b>Approach 1:</b> without<span style="white-space:pre;">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</span>tabsize <span style="white-space:pre;">&nbsp; &nbsp;&nbsp;</span>property
<span style="white-space:pre;">&nbsp; &nbsp;&nbsp;</span>displays <span style="white-space:pre;">&nbsp; &nbsp;&nbsp;</span>as <span style="white-space:pre;">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</span>it is<span style="white-space:pre;">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</span>.<span style="white-space:pre;">&nbsp; &nbsp;&nbsp;</span>
&lt;/pre&gt;
	<span style="white-space:pre;">&nbsp; &nbsp;&nbsp;</span>&lt;pre id="tab1"&gt;<b>Approach 2</b> (tab-size:4):  This	is	pre	tabsize<b>&amp;#9;</b>example.&lt;/pre&gt;
	<span style="white-space:pre;">&nbsp; &nbsp;&nbsp;</span>&lt;pre class="tab2"&gt;<b>Approach 2</b> (tab-size:12):  pre	tab	size<b>&amp;#9;</b>sample.&lt;/pre&gt;

&lt;/body&gt;
&lt;/html&gt; </code></pre>



<div><b><i>Output:</i></b></div>



<figure class="wp-block-image size-large"><img decoding="async" src="https://www.codeindotnet.com/img/htmlcss/space-using-tab-size-property.jpg" alt="space-using-tab-size-property-html-css"/></figure>



<br><br><br>



<h2 id="cssstyles" style="
    font-family: segoe ui,Work Sans,Open Sans,Helvetica,Arial,sans-serif !important;
    border-left: 0.375rem solid #ff0000;
    padding: 0.375rem;
    box-shadow: 0rem 0.125rem 0.625rem 0rem #cac9c9;
    margin-bottom: 1.25rem;
    border-radius: 0rem 0.625rem 0.625rem 0rem;
    font-weight: bold;">
Space Using CSS styles
</h2>



<p>Use margin or padding CSS style properties if white space is required before or after span, paragraph, div or any element tag. Best, <span style="background-color: #90ee90; padding: 0.0625rem 0.3125rem; border-radius:0.625rem">reliable and recommended</span> solution in such scenarios. </p>



<h3 style="font-family: segoe ui,Work Sans,Open Sans,Helvetica,Arial,sans-serif !important;"><strong>1. Margin-left space</strong></h3>



<br>



<div style="margin-bottom: 0.4375rem;">
<b><i>HTML code:</i></b>
<span style="background-color: beige; padding: 0.125rem 0.3125rem;">
sample of &lt;span style=&#8221;margin-left:15px&#8221;&gt;left Margin space.&lt;/span&gt;
</span>
</div>
<div>
<b><i>Output:</i></b> sample of <span style="margin-left:0.9375rem">left Margin space.</span><br>
</div>



<br>



<h3 style="font-family: segoe ui,Work Sans,Open Sans,Helvetica,Arial,sans-serif !important;"><strong>2. Padding-left space</strong></h3>



<br>



<div style="margin-bottom: 0.4375rem;">
<b><i>HTML code:</i></b>
<span style="background-color: beige; padding: 0.125rem 0.3125rem;">
sample of &lt;span style=&#8221;padding-left:15px&#8221;&gt;left Padding space.&lt;/span&gt;
</span>
</div>
<div>
<b><i>Output:</i></b> sample of <span style="padding-left:0.9375rem">left Padding space.</span><br>
</div>



<br><br><br>



<div style="padding: 0.625rem 1.25rem 1.25rem 1.25rem; box-shadow: 0.0625rem 0.0625rem 0.9375rem 0rem lightgrey; margin-bottom: 1.25rem; border-radius: 0.625rem;">

<div><span style="border-bottom: 0.0625rem solid #cd5c5c; color:#cd5c5c;"><b><i>see also:</i></b></span></div>

	<div style="padding-left:0.9375rem;">

	<div style="padding-top:0.625rem; margin-bottom:0.1875rem;"><b>&#8211; <a href="https://www.codeindotnet.com/ascii-value-code-table-unicode/">ASCII codes, characters and values based on Windows-1250</a></b></div>
	<div style="margin-bottom:0.1875rem;"><b>&#8211; <a href="https://www.codeindotnet.com/export-dataset-to-excel-in-c-net-core-openxml/">Export DataSet To Excel in C# .Net Core – OpenXml</a></b></div>
	<div style="margin-bottom:0.1875rem;"><b>&#8211; <a href="https://www.codeindotnet.com/dynamically-add-anchor-tag-in-div-html-javascript/">Dynamically generate anchor tag in div HTML  javascript</a></b></div>
	<div style="margin-bottom:0.1875rem;"><b>&#8211; <a href="https://www.codeindotnet.com/alt-codes-windows-numeric-keypad-list/" aria-current="page">Ultimate Alt Codes (0-255)</a></b></div>

	</div>
</div>



<br>



<p><em>reference: <a href="https://en.wikipedia.org/wiki/Whitespace_character" data-type="URL" data-id="https://en.wikipedia.org/wiki/Whitespace_character" target="_blank" rel="noopener">wikipedia.org/wiki/Whitespace</a></em></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>ASCII codes, characters and values based on Windows-1250</title>
		<link>https://www.codeindotnet.com/ascii-value-code-table-unicode/</link>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Thu, 23 Mar 2023 06:17:59 +0000</pubDate>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[ASCII]]></category>
		<guid isPermaLink="false">https://www.codeindotnet.com/?p=2383</guid>

					<description><![CDATA[The ASCII code includes control and printable characters, i.e digits, uppercase letters and lowercase letters. Commonly used characters are ranged from 32 to 127. Table of Content The ASCII character encoding table for&#160;Windows-1250 with decimal, octal, hex, binary, HTML, and description: ASCII nonprintable control characters (codes 0-31) DEC/ASCII OCT HEX BIN Symbol HTML Number HTML [&#8230;]]]></description>
										<content:encoded><![CDATA[
<br>



<p>The ASCII code includes control and printable characters, i.e digits, uppercase letters and lowercase letters. Commonly used characters are ranged from 32 to 127. </p>



<div><span style="border-bottom: 1px solid #800000; color:#800000;"><b>Table of Content</b></span></div>



<ul class="wp-block-list">
<li><a href="#controlcharacters" data-type="internal" data-id="#controlcharacters">ASCII Control characters (Non-Printable) &#8211; <strong>Code 0 to 31</strong></a></li>



<li><a href="#printablecharacters" data-type="internal" data-id="#printablecharacters">ASCII Printable characters &#8211; <strong>Code 32 to 126</strong></a>
<ul class="wp-block-list">
<li><a href="#code0to9" data-type="internal" data-id="#code0to9">ASCII code of <strong>0 to 9</strong></a></li>



<li><a href="#valuecapitalAtoZ" data-type="internal" data-id="#valuecapitalAtoZ">ASCII value of <strong>capital letter &#8211; A to Z</strong></a></li>



<li><a href="#valuesmallatoz" data-type="internal" data-id="#valuesmallatoz">ASCII value of <strong>small letter &#8211; a to z</strong></a></li>
</ul>
</li>



<li><a href="#extendedcodes" data-type="internal" data-id="#extendedcodes">Extended ASCII characters &#8211; <strong>Code 128 to 255</strong></a></li>
</ul>



<br>



<p>The ASCII character encoding table for&nbsp;Windows-1250 with decimal, octal, hex, binary, HTML, and description:</p>



<h2 class="wp-block-heading" id="controlcharacters"><strong>ASCII nonprintable control characters</strong> (codes 0-31)</h2>



<div>
<table>
    <thead>
        <tr>
            <th>DEC/<br>ASCII</th>
            <th>OCT</th>
            <th>HEX</th>
            <th>BIN</th>
            <th>Symbol</th>
            <th>HTML Number</th>
            <th>HTML Name</th>
            <th>Description</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>0</td>
            <td>0</td>
            <td>0</td>
            <td>0</td>
            <td>&nbsp;NULL&nbsp;</td>
            <td>&amp;#00;</td>
            <td></td>
            <td>Null character</td>
        </tr>
        <tr>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>&nbsp;SOH&nbsp;</td>
            <td>&amp;#01;</td>
            <td></td>
            <td>Start of Heading</td>
        </tr>
        <tr>
            <td>2</td>
            <td>2</td>
            <td>2</td>
            <td>10</td>
            <td>&nbsp;STX&nbsp;</td>
            <td>&amp;#02;</td>
            <td></td>
            <td>Start of Text</td>
        </tr>
        <tr>
            <td>3</td>
            <td>3</td>
            <td>3</td>
            <td>11</td>
            <td>&nbsp;ETX&nbsp;</td>
            <td>&amp;#03;</td>
            <td></td>
            <td>End of Text</td>
        </tr>
        <tr>
            <td>4</td>
            <td>4</td>
            <td>4</td>
            <td>100</td>
            <td>&nbsp;EOT&nbsp;</td>
            <td>&amp;#04;</td>
            <td></td>
            <td>End of Transmission</td>
        </tr>
        <tr>
            <td>5</td>
            <td>5</td>
            <td>5</td>
            <td>101</td>
            <td>&nbsp;ENQ&nbsp;</td>
            <td>&amp;#05;</td>
            <td></td>
            <td>Enquiry</td>
        </tr>
        <tr>
            <td>6</td>
            <td>6</td>
            <td>6</td>
            <td>110</td>
            <td>&nbsp;ACK&nbsp;</td>
            <td>&amp;#06;</td>
            <td></td>
            <td>Acknowledge</td>
        </tr>
        <tr>
            <td>7</td>
            <td>7</td>
            <td>7</td>
            <td>111</td>
            <td>&nbsp;BEL&nbsp;</td>
            <td>&amp;#07;</td>
            <td></td>
            <td>Bell, Alert</td>
        </tr>
        <tr>
            <td>8</td>
            <td>10</td>
            <td>8</td>
            <td>1000</td>
            <td>&nbsp;BS&nbsp;</td>
            <td>&amp;#08;</td>
            <td></td>
            <td>Backspace</td>
        </tr>
        <tr>
            <td>9</td>
            <td>11</td>
            <td>9</td>
            <td>1001</td>
            <td>&nbsp;HT&nbsp;</td>
            <td>&amp;#09;</td>
            <td></td>
            <td>Horizontal Tab</td>
        </tr>
        <tr>
            <td>10</td>
            <td>12</td>
            <td>0A</td>
            <td>1010</td>
            <td>&nbsp;LF&nbsp;</td>
            <td>&amp;#10;</td>
            <td></td>
            <td>Line Feed</td>
        </tr>
        <tr>
            <td>11</td>
            <td>13</td>
            <td>0B</td>
            <td>1011</td>
            <td>&nbsp;VT&nbsp;</td>
            <td>&amp;#11;</td>
            <td></td>
            <td>Vertical Tabulation</td>
        </tr>
        <tr>
            <td>12</td>
            <td>14</td>
            <td>0C</td>
            <td>1100</td>
            <td>&nbsp;FF&nbsp;</td>
            <td>&amp;#12;</td>
            <td></td>
            <td>Form Feed</td>
        </tr>
        <tr>
            <td>13</td>
            <td>15</td>
            <td>0D</td>
            <td>1101</td>
            <td>&nbsp;CR&nbsp;</td>
            <td>&amp;#13;</td>
            <td></td>
            <td>Carriage Return</td>
        </tr>
        <tr>
            <td>14</td>
            <td>16</td>
            <td>0E</td>
            <td>1110</td>
            <td>&nbsp;SO&nbsp;</td>
            <td>&amp;#14;</td>
            <td></td>
            <td>Shift Out</td>
        </tr>
        <tr>
            <td>15</td>
            <td>17</td>
            <td>0F</td>
            <td>1111</td>
            <td>&nbsp;SI&nbsp;</td>
            <td>&amp;#15;</td>
            <td></td>
            <td>Shift In</td>
        </tr>
        <tr>
            <td>16</td>
            <td>20</td>
            <td>10</td>
            <td>10000</td>
            <td>&nbsp;DLE&nbsp;</td>
            <td>&amp;#16;</td>
            <td></td>
            <td>Data Link Escape</td>
        </tr>
        <tr>
            <td>17</td>
            <td>21</td>
            <td>11</td>
            <td>10001</td>
            <td>&nbsp;DC1&nbsp;</td>
            <td>&amp;#17;</td>
            <td></td>
            <td>Device Control One (XON)</td>
        </tr>
        <tr>
            <td>18</td>
            <td>22</td>
            <td>12</td>
            <td>10010</td>
            <td>&nbsp;DC2&nbsp;</td>
            <td>&amp;#18;</td>
            <td></td>
            <td>Device Control Two</td>
        </tr>
        <tr>
            <td>19</td>
            <td>23</td>
            <td>13</td>
            <td>10011</td>
            <td>&nbsp;DC3&nbsp;</td>
            <td>&amp;#19;</td>
            <td></td>
            <td>Device Control Three (XOFF)</td>
        </tr>
        <tr>
            <td>20</td>
            <td>24</td>
            <td>14</td>
            <td>10100</td>
            <td>&nbsp;DC4&nbsp;</td>
            <td>&amp;#20;</td>
            <td></td>
            <td>Device Control Four</td>
        </tr>
        <tr>
            <td>21</td>
            <td>25</td>
            <td>15</td>
            <td>10101</td>
            <td>&nbsp;NAK&nbsp;</td>
            <td>&amp;#21;</td>
            <td></td>
            <td>Negative Acknowledge</td>
        </tr>
        <tr>
            <td>22</td>
            <td>26</td>
            <td>16</td>
            <td>10110</td>
            <td>&nbsp;SYN&nbsp;</td>
            <td>&amp;#22;</td>
            <td></td>
            <td>Synchronous Idle</td>
        </tr>
        <tr>
            <td>23</td>
            <td>27</td>
            <td>17</td>
            <td>10111</td>
            <td>&nbsp;ETB&nbsp;</td>
            <td>&amp;#23;</td>
            <td></td>
            <td>End of Transmission Block</td>
        </tr>
        <tr>
            <td>24</td>
            <td>30</td>
            <td>18</td>
            <td>11000</td>
            <td>&nbsp;CAN&nbsp;</td>
            <td>&amp;#24;</td>
            <td></td>
            <td>Cancel</td>
        </tr>
        <tr>
            <td>25</td>
            <td>31</td>
            <td>19</td>
            <td>11001</td>
            <td>&nbsp;EM&nbsp;</td>
            <td>&amp;#25;</td>
            <td></td>
            <td>End of medium</td>
        </tr>
        <tr>
            <td>26</td>
            <td>32</td>
            <td>1A</td>
            <td>11010</td>
            <td>&nbsp;SUB&nbsp;</td>
            <td>&amp;#26;</td>
            <td></td>
            <td>Substitute</td>
        </tr>
        <tr>
            <td>27</td>
            <td>33</td>
            <td>1B</td>
            <td>11011</td>
            <td>&nbsp;ESC&nbsp;</td>
            <td>&amp;#27;</td>
            <td></td>
            <td>Escape</td>
        </tr>
        <tr>
            <td>28</td>
            <td>34</td>
            <td>1C</td>
            <td>11100</td>
            <td>&nbsp;FS&nbsp;</td>
            <td>&amp;#28;</td>
            <td></td>
            <td>File Separator</td>
        </tr>
        <tr>
            <td>29</td>
            <td>35</td>
            <td>1D</td>
            <td>11101</td>
            <td>&nbsp;GS&nbsp;</td>
            <td>&amp;#29;</td>
            <td></td>
            <td>Group Separator</td>
        </tr>
        <tr>
            <td>30</td>
            <td>36</td>
            <td>1E</td>
            <td>11110</td>
            <td>&nbsp;RS&nbsp;</td>
            <td>&amp;#30;</td>
            <td></td>
            <td>Record Separator</td>
        </tr>
        <tr>
            <td>31</td>
            <td>37</td>
            <td>1F</td>
            <td>11111</td>
            <td>&nbsp;US&nbsp;</td>
            <td>&amp;#31;</td>
            <td></td>
            <td>Unit Separator</td>
        </tr>
        <tr>
            <td>127</td>
            <td>177</td>
            <td>7F</td>
            <td>1111111</td>
            <td>DEL</td>
            <td>&amp;#127;</td>
            <td></td>
            <td>Delete</td>
        </tr>
    </tbody>
</table>
</div>



<br>



<h2 class="wp-block-heading" id="printablecharacters"><strong>ASCII printable characters</strong> (code 32-127)</h2>



<table>
    <thead>
        <tr>
            <th>DEC/<br>ASCII</th>
            <th>OCT</th>
            <th>HEX</th>
            <th>BIN</th>
            <th>Symbol</th>
            <th>HTML Number</th>
            <th>HTML Name</th>
            <th>Description</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>32</td>
            <td>40</td>
            <td>20</td>
            <td>100000</td>
            <td> </td>
            <td>&amp;#32;</td>
            <td></td>
            <td>Space</td>
        </tr>
        <tr>
            <td>33</td>
            <td>41</td>
            <td>21</td>
            <td>100001</td>
            <td>!</td>
            <td>&amp;#33;</td>
            <td>&amp;excl;</td>
            <td>Exclamation mark</td>
        </tr>
        <tr>
            <td>34</td>
            <td>42</td>
            <td>22</td>
            <td>100010</td>
            <td>&#8220;</td>
            <td>&amp;#34;</td>
            <td>&amp;quot;</td>
            <td>Double quotes (or speech marks)</td>
        </tr>
        <tr>
            <td>35</td>
            <td>43</td>
            <td>23</td>
            <td>100011</td>
            <td>#</td>
            <td>&amp;#35;</td>
            <td>&amp;num;</td>
            <td>Number sign</td>
        </tr>
        <tr>
            <td>36</td>
            <td>44</td>
            <td>24</td>
            <td>100100</td>
            <td>$</td>
            <td>&amp;#36;</td>
            <td>&amp;dollar;</td>
            <td>Dollar</td>
        </tr>
        <tr>
            <td>37</td>
            <td>45</td>
            <td>25</td>
            <td>100101</td>
            <td>%</td>
            <td>&amp;#37;</td>
            <td>&amp;percnt;</td>
            <td>Per cent sign</td>
        </tr>
        <tr>
            <td>38</td>
            <td>46</td>
            <td>26</td>
            <td>100110</td>
            <td>&amp;</td>
            <td>&amp;#38;</td>
            <td>&amp;amp;</td>
            <td>Ampersand</td>
        </tr>
        <tr>
            <td>39</td>
            <td>47</td>
            <td>27</td>
            <td>100111</td>
            <td>&#8216;</td>
            <td>&amp;#39;</td>
            <td>&amp;apos;</td>
            <td>Single quote</td>
        </tr>
        <tr>
            <td>40</td>
            <td>50</td>
            <td>28</td>
            <td>101000</td>
            <td>(</td>
            <td>&amp;#40;</td>
            <td>&amp;lparen;</td>
            <td>Open parenthesis (or open bracket)</td>
        </tr>
        <tr>
            <td>41</td>
            <td>51</td>
            <td>29</td>
            <td>101001</td>
            <td>)</td>
            <td>&amp;#41;</td>
            <td>&amp;rparen;</td>
            <td>Close parenthesis (or close bracket)</td>
        </tr>
        <tr>
            <td>42</td>
            <td>52</td>
            <td>2A</td>
            <td>101010</td>
            <td>*</td>
            <td>&amp;#42;</td>
            <td>&amp;ast;</td>
            <td>Asterisk</td>
        </tr>
        <tr>
            <td>43</td>
            <td>53</td>
            <td>2B</td>
            <td>101011</td>
            <td>+</td>
            <td>&amp;#43;</td>
            <td>&amp;plus;</td>
            <td>Plus</td>
        </tr>
        <tr>
            <td>44</td>
            <td>54</td>
            <td>2C</td>
            <td>101100</td>
            <td>,</td>
            <td>&amp;#44;</td>
            <td>&amp;comma;</td>
            <td>Comma</td>
        </tr>
        <tr>
            <td>45</td>
            <td>55</td>
            <td>2D</td>
            <td>101101</td>
            <td>&#8211;</td>
            <td>&amp;#45;</td>
            <td></td>
            <td>Hyphen-minus</td>
        </tr>
        <tr>
            <td>46</td>
            <td>56</td>
            <td>2E</td>
            <td>101110</td>
            <td>.</td>
            <td>&amp;#46;</td>
            <td>&amp;period;</td>
            <td>Period, dot or full stop</td>
        </tr>
        <tr>
            <td>47</td>
            <td>57</td>
            <td>2F</td>
            <td>101111</td>
            <td>/</td>
            <td>&amp;#47;</td>
            <td>&amp;sol;</td>
            <td>Slash or divide</td>
        </tr>
        <tr>
            <td id="code0to9" colspan="8"><center><h2 style="padding-top:10px; font-size: 24px !important; color: blue !important;"><b>ASCII code of 0 to 9 numbers</b></h2></center></td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">48</td>
            <td>60</td>
            <td>30</td>
            <td>110000</td>
            <td style="font-weight:bold; color:blue !important;">0</td>
            <td>&amp;#48;</td>
            <td></td>
            <td>Digit number zero</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">49</td>
            <td>61</td>
            <td>31</td>
            <td>110001</td>
            <td style="font-weight:bold; color:blue !important;">1</td>
            <td>&amp;#49;</td>
            <td></td>
            <td>Digit number one</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">50</td>
            <td>62</td>
            <td>32</td>
            <td>110010</td>
            <td style="font-weight:bold; color:blue !important;">2</td>
            <td>&amp;#50;</td>
            <td></td>
            <td>Digit number two</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">51</td>
            <td>63</td>
            <td>33</td>
            <td>110011</td>
            <td style="font-weight:bold; color:blue !important;">3</td>
            <td>&amp;#51;</td>
            <td></td>
            <td>Digit number three</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">52</td>
            <td>64</td>
            <td>34</td>
            <td>110100</td>
            <td style="font-weight:bold; color:blue !important;">4</td>
            <td>&amp;#52;</td>
            <td></td>
            <td>Digit number four</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">53</td>
            <td>65</td>
            <td>35</td>
            <td>110101</td>
            <td style="font-weight:bold; color:blue !important;">5</td>
            <td>&amp;#53;</td>
            <td></td>
            <td>Digit number five</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">54</td>
            <td>66</td>
            <td>36</td>
            <td>110110</td>
            <td style="font-weight:bold; color:blue !important;">6</td>
            <td>&amp;#54;</td>
            <td></td>
            <td>Digit number six</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">55</td>
            <td>67</td>
            <td>37</td>
            <td>110111</td>
            <td style="font-weight:bold; color:blue !important;">7</td>
            <td>&amp;#55;</td>
            <td></td>
            <td>Digit number seven</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">56</td>
            <td>70</td>
            <td>38</td>
            <td>111000</td>
            <td style="font-weight:bold; color:blue !important;">8</td>
            <td>&amp;#56;</td>
            <td></td>
            <td>Digit number eight</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">57</td>
            <td>71</td>
            <td>39</td>
            <td>111001</td>
            <td style="font-weight:bold; color:blue !important;">9</td>
            <td>&amp;#57;</td>
            <td></td>
            <td>Digit number nine</td>
        </tr>
        <tr>
            <td colspan="8" style="padding-top:20px"></td>
        </tr>
        <tr>
            <td>58</td>
            <td>72</td>
            <td>3A</td>
            <td>111010</td>
            <td>:</td>
            <td>&amp;#58;</td>
            <td>&amp;colon;</td>
            <td>Colon</td>
        </tr>
        <tr>
            <td>59</td>
            <td>73</td>
            <td>3B</td>
            <td>111011</td>
            <td>;</td>
            <td>&amp;#59;</td>
            <td>&amp;semi;</td>
            <td>Semicolon</td>
        </tr>
        <tr>
            <td>60</td>
            <td>74</td>
            <td>3C</td>
            <td>111100</td>
            <td>&lt;</td>
            <td>&amp;#60;</td>
            <td>&amp;lt;</td>
            <td>Less than sign</td>
        </tr>
        <tr>
            <td>61</td>
            <td>75</td>
            <td>3D</td>
            <td>111101</td>
            <td>=</td>
            <td>&amp;#61;</td>
            <td>&amp;equals;</td>
            <td>Equals</td>
        </tr>
        <tr>
            <td>62</td>
            <td>76</td>
            <td>3E</td>
            <td>111110</td>
            <td>&gt;</td>
            <td>&amp;#62;</td>
            <td>&amp;gt;</td>
            <td>Greater than sign</td>
        </tr>
        <tr>
            <td>63</td>
            <td>77</td>
            <td>3F</td>
            <td>111111</td>
            <td>?</td>
            <td>&amp;#63;</td>
            <td>&amp;quest;</td>
            <td>Question mark</td>
        </tr>
        <tr>
            <td>64</td>
            <td>100</td>
            <td>40</td>
            <td>1000000</td>
            <td>@</td>
            <td>&amp;#64;</td>
            <td>&amp;commat;</td>
            <td>At sign</td>
        </tr>
        <tr>
            <td id="valuecapitalAtoZ" colspan="8"><center><h2 style="padding-top:10px; font-size: 24px !important; color: blue !important;"><b>ASCII value of capital letter A to Z</b></h2></center></td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">65</td>
            <td>101</td>
            <td>41</td>
            <td>1000001</td>
            <td style="font-weight:bold; color:blue !important;">A</td>
            <td>&amp;#65;</td>
            <td></td>
            <td>Capital or Uppercase letter A</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">66</td>
            <td>102</td>
            <td>42</td>
            <td>1000010</td>
            <td style="font-weight:bold; color:blue !important;">B</td>
            <td>&amp;#66;</td>
            <td></td>
            <td>Capital or Uppercase letter B</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">67</td>
            <td>103</td>
            <td>43</td>
            <td>1000011</td>
            <td style="font-weight:bold; color:blue !important;">C</td>
            <td>&amp;#67;</td>
            <td></td>
            <td>Capital or Uppercase letter C</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">68</td>
            <td>104</td>
            <td>44</td>
            <td>1000100</td>
            <td style="font-weight:bold; color:blue !important;">D</td>
            <td>&amp;#68;</td>
            <td></td>
            <td>Capital or Uppercase letter D</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">69</td>
            <td>105</td>
            <td>45</td>
            <td>1000101</td>
            <td style="font-weight:bold; color:blue !important;">E</td>
            <td>&amp;#69;</td>
            <td></td>
            <td>Capital or Uppercase letter E</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">70</td>
            <td>106</td>
            <td>46</td>
            <td>1000110</td>
            <td style="font-weight:bold; color:blue !important;">F</td>
            <td>&amp;#70;</td>
            <td></td>
            <td>Capital or Uppercase letter F</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">71</td>
            <td>107</td>
            <td>47</td>
            <td>1000111</td>
            <td style="font-weight:bold; color:blue !important;">G</td>
            <td>&amp;#71;</td>
            <td></td>
            <td>Capital or Uppercase letter G</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">72</td>
            <td>110</td>
            <td>48</td>
            <td>1001000</td>
            <td style="font-weight:bold; color:blue !important;">H</td>
            <td>&amp;#72;</td>
            <td></td>
            <td>Capital or Uppercase letter H</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">73</td>
            <td>111</td>
            <td>49</td>
            <td>1001001</td>
            <td style="font-weight:bold; color:blue !important;">I</td>
            <td>&amp;#73;</td>
            <td></td>
            <td>Capital or Uppercase letter I</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">74</td>
            <td>112</td>
            <td>4A</td>
            <td>1001010</td>
            <td style="font-weight:bold; color:blue !important;">J</td>
            <td>&amp;#74;</td>
            <td></td>
            <td>Capital or Uppercase letter J</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">75</td>
            <td>113</td>
            <td>4B</td>
            <td>1001011</td>
            <td style="font-weight:bold; color:blue !important;">K</td>
            <td>&amp;#75;</td>
            <td></td>
            <td>Capital or Uppercase letter K</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">76</td>
            <td>114</td>
            <td>4C</td>
            <td>1001100</td>
            <td style="font-weight:bold; color:blue !important;">L</td>
            <td>&amp;#76;</td>
            <td></td>
            <td>Capital or Uppercase letter L</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">77</td>
            <td>115</td>
            <td>4D</td>
            <td>1001101</td>
            <td style="font-weight:bold; color:blue !important;">M</td>
            <td>&amp;#77;</td>
            <td></td>
            <td>Capital or Uppercase letter M</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">78</td>
            <td>116</td>
            <td>4E</td>
            <td>1001110</td>
            <td style="font-weight:bold; color:blue !important;">N</td>
            <td>&amp;#78;</td>
            <td></td>
            <td>Capital or Uppercase letter N</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">79</td>
            <td>117</td>
            <td>4F</td>
            <td>1001111</td>
            <td style="font-weight:bold; color:blue !important;">O</td>
            <td>&amp;#79;</td>
            <td></td>
            <td>Capital or Uppercase letter O</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">80</td>
            <td>120</td>
            <td>50</td>
            <td>1010000</td>
            <td style="font-weight:bold; color:blue !important;">P</td>
            <td>&amp;#80;</td>
            <td></td>
            <td>Capital or Uppercase letter P</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">81</td>
            <td>121</td>
            <td>51</td>
            <td>1010001</td>
            <td style="font-weight:bold; color:blue !important;">Q</td>
            <td>&amp;#81;</td>
            <td></td>
            <td>Capital or Uppercase letter Q</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">82</td>
            <td>122</td>
            <td>52</td>
            <td>1010010</td>
            <td style="font-weight:bold; color:blue !important;">R</td>
            <td>&amp;#82;</td>
            <td></td>
            <td>Capital or Uppercase letter R</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">83</td>
            <td>123</td>
            <td>53</td>
            <td>1010011</td>
            <td style="font-weight:bold; color:blue !important;">S</td>
            <td>&amp;#83;</td>
            <td></td>
            <td>Capital or Uppercase letter S</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">84</td>
            <td>124</td>
            <td>54</td>
            <td>1010100</td>
            <td style="font-weight:bold; color:blue !important;">T</td>
            <td>&amp;#84;</td>
            <td></td>
            <td>Capital or Uppercase letter T</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">85</td>
            <td>125</td>
            <td>55</td>
            <td>1010101</td>
            <td style="font-weight:bold; color:blue !important;">U</td>
            <td>&amp;#85;</td>
            <td></td>
            <td>Capital or Uppercase letter U</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">86</td>
            <td>126</td>
            <td>56</td>
            <td>1010110</td>
            <td style="font-weight:bold; color:blue !important;">V</td>
            <td>&amp;#86;</td>
            <td></td>
            <td>Capital or Uppercase letter V</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">87</td>
            <td>127</td>
            <td>57</td>
            <td>1010111</td>
            <td style="font-weight:bold; color:blue !important;">W</td>
            <td>&amp;#87;</td>
            <td></td>
            <td>Capital or Uppercase letter W</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">88</td>
            <td>130</td>
            <td>58</td>
            <td>1011000</td>
            <td style="font-weight:bold; color:blue !important;">X</td>
            <td>&amp;#88;</td>
            <td></td>
            <td>Capital or Uppercase letter X</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">89</td>
            <td>131</td>
            <td>59</td>
            <td>1011001</td>
            <td style="font-weight:bold; color:blue !important;">Y</td>
            <td>&amp;#89;</td>
            <td></td>
            <td>Capital or Uppercase letter Y</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">90</td>
            <td>132</td>
            <td>5A</td>
            <td>1011010</td>
            <td style="font-weight:bold; color:blue !important;">Z</td>
            <td>&amp;#90;</td>
            <td></td>
            <td>Capital or Uppercase letter Z</td>
        </tr>
        <tr>
            <td colspan="8" style="padding-top:20px"></td>
        </tr>
        <tr>
            <td>91</td>
            <td>133</td>
            <td>5B</td>
            <td>1011011</td>
            <td>[</td>
            <td>&amp;#91;</td>
            <td>&amp;lsqb;</td>
            <td>opening left square bracket</td>
        </tr>
        <tr>
            <td>92</td>
            <td>134</td>
            <td>5C</td>
            <td>1011100</td>
            <td>\</td>
            <td>&amp;#92;</td>
            <td>&amp;bsol;</td>
            <td>Back or reverse slash</td>
        </tr>
        <tr>
            <td>93</td>
            <td>135</td>
            <td>5D</td>
            <td>1011101</td>
            <td>]</td>
            <td>&amp;#93;</td>
            <td>&amp;rsqb;</td>
            <td>closing right square bracket</td>
        </tr>
        <tr>
            <td>94</td>
            <td>136</td>
            <td>5E</td>
            <td>1011110</td>
            <td>^</td>
            <td>&amp;#94;</td>
            <td>&amp;Hat;</td>
            <td>Caret &#8211; circumflex</td>
        </tr>
        <tr>
            <td>95</td>
            <td>137</td>
            <td>5F</td>
            <td>1011111</td>
            <td>_</td>
            <td>&amp;#95;</td>
            <td>&amp;lowbar;</td>
            <td>Underscore</td>
        </tr>
        <tr>
            <td>96</td>
            <td>140</td>
            <td>60</td>
            <td>1100000</td>
            <td>`</td>
            <td>&amp;#96;</td>
            <td>&amp;grave;</td>
            <td>Grave accent</td>
        </tr>
        <tr>
            <td id="valuesmallatoz" colspan="8"><center><h2 style="padding-top:10px; font-size:24px !important; color:blue !important;"><b>ASCII value of small letters a to z</b></h2></center></td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">97</td>
            <td>141</td>
            <td>61</td>
            <td>1100001</td>
            <td style="font-weight:bold; color:blue !important;">a</td>
            <td>&amp;#97;</td>
            <td></td>
            <td>Lowercase letter a</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">98</td>
            <td>142</td>
            <td>62</td>
            <td>1100010</td>
            <td style="font-weight:bold; color:blue !important;">b</td>
            <td>&amp;#98;</td>
            <td></td>
            <td>Lowercase letter b</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">99</td>
            <td>143</td>
            <td>63</td>
            <td>1100011</td>
            <td style="font-weight:bold; color:blue !important;">c</td>
            <td>&amp;#99;</td>
            <td></td>
            <td>Lowercase letter c </td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">100</td>
            <td>144</td>
            <td>64</td>
            <td>1100100</td>
            <td style="font-weight:bold; color:blue !important;">d</td>
            <td>&amp;#100;</td>
            <td></td>
            <td>Lowercase letter d</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">101</td>
            <td>145</td>
            <td>65</td>
            <td>1100101</td>
            <td style="font-weight:bold; color:blue !important;">e</td>
            <td>&amp;#101;</td>
            <td></td>
            <td>Lowercase letter e</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">102</td>
            <td>146</td>
            <td>66</td>
            <td>1100110</td>
            <td style="font-weight:bold; color:blue !important;">f</td>
            <td>&amp;#102;</td>
            <td></td>
            <td>Lowercase letter f</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">103</td>
            <td>147</td>
            <td>67</td>
            <td>1100111</td>
            <td style="font-weight:bold; color:blue !important;">g</td>
            <td>&amp;#103;</td>
            <td></td>
            <td>Lowercase letter g</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">104</td>
            <td>150</td>
            <td>68</td>
            <td>1101000</td>
            <td style="font-weight:bold; color:blue !important;">h</td>
            <td>&amp;#104;</td>
            <td></td>
            <td>Lowercase letter h</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">105</td>
            <td>151</td>
            <td>69</td>
            <td>1101001</td>
            <td style="font-weight:bold; color:blue !important;">i</td>
            <td>&amp;#105;</td>
            <td></td>
            <td>Lowercase letter i</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">106</td>
            <td>152</td>
            <td>6A</td>
            <td>1101010</td>
            <td style="font-weight:bold; color:blue !important;">j</td>
            <td>&amp;#106;</td>
            <td></td>
            <td>Lowercase letter j</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">107</td>
            <td>153</td>
            <td>6B</td>
            <td>1101011</td>
            <td style="font-weight:bold; color:blue !important;">k</td>
            <td>&amp;#107;</td>
            <td></td>
            <td>Lowercase letter k</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">108</td>
            <td>154</td>
            <td>6C</td>
            <td>1101100</td>
            <td style="font-weight:bold; color:blue !important;">l</td>
            <td>&amp;#108;</td>
            <td></td>
            <td>Lowercase letter l</td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">109</td>
            <td>155</td>
            <td>6D</td>
            <td>1101101</td>
            <td style="font-weight:bold; color:blue !important;">m</td>
            <td>&amp;#109;</td>
            <td></td>
            <td>Lowercase letter m </td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">110</td>
            <td>156</td>
            <td>6E</td>
            <td>1101110</td>
            <td style="font-weight:bold; color:blue !important;">n</td>
            <td>&amp;#110;</td>
            <td></td>
            <td>Lowercase letter n </td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">111</td>
            <td>157</td>
            <td>6F</td>
            <td>1101111</td>
            <td style="font-weight:bold; color:blue !important;">o</td>
            <td>&amp;#111;</td>
            <td></td>
            <td>Lowercase letter o </td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">112</td>
            <td>160</td>
            <td>70</td>
            <td>1110000</td>
            <td style="font-weight:bold; color:blue !important;">p</td>
            <td>&amp;#112;</td>
            <td></td>
            <td>Lowercase letter p </td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">113</td>
            <td>161</td>
            <td>71</td>
            <td>1110001</td>
            <td style="font-weight:bold; color:blue !important;">q</td>
            <td>&amp;#113;</td>
            <td></td>
            <td>Lowercase letter q </td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">114</td>
            <td>162</td>
            <td>72</td>
            <td>1110010</td>
            <td style="font-weight:bold; color:blue !important;">r</td>
            <td>&amp;#114;</td>
            <td></td>
            <td>Lowercase letter r </td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">115</td>
            <td>163</td>
            <td>73</td>
            <td>1110011</td>
            <td style="font-weight:bold; color:blue !important;">s</td>
            <td>&amp;#115;</td>
            <td></td>
            <td>Lowercase letter s </td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">116</td>
            <td>164</td>
            <td>74</td>
            <td>1110100</td>
            <td style="font-weight:bold; color:blue !important;">t</td>
            <td>&amp;#116;</td>
            <td></td>
            <td>Lowercase letter t </td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">117</td>
            <td>165</td>
            <td>75</td>
            <td>1110101</td>
            <td style="font-weight:bold; color:blue !important;">u</td>
            <td>&amp;#117;</td>
            <td></td>
            <td>Lowercase letter u </td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">118</td>
            <td>166</td>
            <td>76</td>
            <td>1110110</td>
            <td style="font-weight:bold; color:blue !important;">v</td>
            <td>&amp;#118;</td>
            <td></td>
            <td>Lowercase letter v </td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">119</td>
            <td>167</td>
            <td>77</td>
            <td>1110111</td>
            <td style="font-weight:bold; color:blue !important;">w</td>
            <td>&amp;#119;</td>
            <td></td>
            <td>Lowercase letter w </td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">120</td>
            <td>170</td>
            <td>78</td>
            <td>1111000</td>
            <td style="font-weight:bold; color:blue !important;">x</td>
            <td>&amp;#120;</td>
            <td></td>
            <td>Lowercase letter x </td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">121</td>
            <td>171</td>
            <td>79</td>
            <td>1111001</td>
            <td style="font-weight:bold; color:blue !important;">y</td>
            <td>&amp;#121;</td>
            <td></td>
            <td>Lowercase letter y </td>
        </tr>
        <tr>
            <td style="font-weight:bold; color:blue !important;">122</td>
            <td>172</td>
            <td>7A</td>
            <td>1111010</td>
            <td style="font-weight:bold; color:blue !important;">z</td>
            <td>&amp;#122;</td>
            <td></td>
            <td>Lowercase letter z </td>
        </tr>
        <tr>
            <td colspan="8" style="padding-top:20px"></td>
        </tr>
            <tr><td>123</td>
            <td>173</td>
            <td>7B</td>
            <td>1111011</td>
            <td>{</td>
            <td>&amp;#123;</td>
            <td>&amp;lcub;</td>
            <td>Opening braces or left curly bracket</td>
        </tr>
        <tr>
            <td>124</td>
            <td>174</td>
            <td>7C</td>
            <td>1111100</td>
            <td>|</td>
            <td>&amp;#124;</td>
            <td>&amp;verbar;</td>
            <td>Vertical bar or line or slash</td>
        </tr>
        <tr>
            <td>125</td>
            <td>175</td>
            <td>7D</td>
            <td>1111101</td>
            <td>}</td>
            <td>&amp;#125;</td>
            <td>&amp;rcub;</td>
            <td>Closing bracket or right curly bracket</td>
        </tr>
        <tr>
            <td>126</td>
            <td>176</td>
            <td>7E</td>
            <td>1111110</td>
            <td>~</td>
            <td>&amp;#126;</td>
            <td>&amp;tilde;</td>
            <td>Equivalency sign &#8211; tilde</td>
        </tr>
    </tbody>
</table>



<br>



<h2 class="wp-block-heading" id="extendedcodes"><strong>Extended ASCII codes</strong> (128 &#8211; 255)</h2>



<table>
    <thead>
        <tr>
            <th>DEC/<br>ASCII</th>
            <th>OCT</th>
            <th>HEX</th>
            <th>BIN</th>
            <th>Symbol</th>
            <th>HTML Number</th>
            <th>HTML Name</th>
            <th>Description</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>128</td>
            <td>200</td>
            <td>80</td>
            <td>10000000</td>
            <td>€</td>
            <td>&amp;#8364;</td>
            <td>&amp;euro;</td>
            <td>Euro sign</td>
        </tr>
        <tr>
            <td>129</td>
            <td>201</td>
            <td>81</td>
            <td>10000001</td>
            <td></td>
            <td></td>
            <td></td>
            <td>Unused</td>
        </tr>
        <tr>
            <td>130</td>
            <td>202</td>
            <td>82</td>
            <td>10000010</td>
            <td>‚</td>
            <td>&amp;#130;</td>
            <td>&amp;sbquo;</td>
            <td>Single low-9 quotation mark</td>
        </tr>
        <tr>
            <td>131</td>
            <td>203</td>
            <td>83</td>
            <td>10000011</td>
            <td></td>
            <td></td>
            <td></td>
            <td>Unused</td>
        </tr>
        <tr>
            <td>132</td>
            <td>204</td>
            <td>84</td>
            <td>10000100</td>
            <td>„</td>
            <td>&amp;#132;</td>
            <td>&amp;bdquo;</td>
            <td>Double low-9 quotation mark</td>
        </tr>
        <tr>
            <td>133</td>
            <td>205</td>
            <td>85</td>
            <td>10000101</td>
            <td>…</td>
            <td>&amp;#133;</td>
            <td>&amp;hellip;</td>
            <td>Horizontal ellipsis</td>
        </tr>
        <tr>
            <td>134</td>
            <td>206</td>
            <td>86</td>
            <td>10000110</td>
            <td>†</td>
            <td>&amp;#134;</td>
            <td>&amp;dagger;</td>
            <td>Dagger</td>
        </tr>
        <tr>
            <td>135</td>
            <td>207</td>
            <td>87</td>
            <td>10000111</td>
            <td>‡</td>
            <td>&amp;#135;</td>
            <td>&amp;Dagger;</td>
            <td>Double dagger</td>
        </tr>
        <tr>
            <td>136</td>
            <td>210</td>
            <td>88</td>
            <td>10001000</td>
            <td></td>
            <td></td>
            <td></td>
            <td>Unused</td>
        </tr>
        <tr>
            <td>137</td>
            <td>211</td>
            <td>89</td>
            <td>10001001</td>
            <td>‰</td>
            <td>&amp;#137;</td>
            <td>&amp;permil;</td>
            <td>Per mille sign</td>
        </tr>
        <tr>
            <td>138</td>
            <td>212</td>
            <td>8A</td>
            <td>10001010</td>
            <td>Š</td>
            <td>&amp;#138;</td>
            <td>&amp;Scaron;</td>
            <td>Latin capital letter S with caron</td>
        </tr>
        <tr>
            <td>139</td>
            <td>213</td>
            <td>8B</td>
            <td>10001011</td>
            <td>‹</td>
            <td>&amp;#139;</td>
            <td>&amp;lsaquo;</td>
            <td>Single left-pointing angle quotation</td>
        </tr>
        <tr>
            <td>140</td>
            <td>214</td>
            <td>8C</td>
            <td>10001100</td>
            <td>Ś</td>
            <td>&amp;#346;</td>
            <td>&amp;Sacute;</td>
            <td>Latin capital letter S with acute</td>
        </tr>
        <tr>
            <td>141</td>
            <td>215</td>
            <td>8D</td>
            <td>10001101</td>
            <td>Ť</td>
            <td>&amp;#356;</td>
            <td>&amp;Tcaron;</td>
            <td>Latin capital letter T with caron</td>
        </tr>
        <tr>
            <td>142</td>
            <td>216</td>
            <td>8E</td>
            <td>10001110</td>
            <td>Ž</td>
            <td>&amp;#142;</td>
            <td>&amp;Zcaron;</td>
            <td>Latin capital letter Z with caron</td>
        </tr>
        <tr>
            <td>143</td>
            <td>217</td>
            <td>8F</td>
            <td>10001111</td>
            <td>Ź</td>
            <td>&amp;#377;</td>
            <td>&amp;Zacute;</td>
            <td>Latin capital letter Z with acute</td>
        </tr>
        <tr>
            <td>144</td>
            <td>220</td>
            <td>90</td>
            <td>10010000</td>
            <td></td>
            <td></td>
            <td></td>
            <td>Unused</td>
        </tr>
        <tr>
            <td>145</td>
            <td>221</td>
            <td>91</td>
            <td>10010001</td>
            <td>‘</td>
            <td>&amp;#145;</td>
            <td>&amp;lsquo;</td>
            <td>Left single quotation mark</td>
        </tr>
        <tr>
            <td>146</td>
            <td>222</td>
            <td>92</td>
            <td>10010010</td>
            <td>’</td>
            <td>&amp;#146;</td>
            <td>&amp;rsquo;</td>
            <td>Right single quotation mark</td>
        </tr>
        <tr>
            <td>147</td>
            <td>223</td>
            <td>93</td>
            <td>10010011</td>
            <td>“</td>
            <td>&amp;#147;</td>
            <td>&amp;ldquo;</td>
            <td>Left double quotation mark</td>
        </tr>
        <tr>
            <td>148</td>
            <td>224</td>
            <td>94</td>
            <td>10010100</td>
            <td>”</td>
            <td>&amp;#148;</td>
            <td>&amp;rdquo;</td>
            <td>Right double quotation mark</td>
        </tr>
        <tr>
            <td>149</td>
            <td>225</td>
            <td>95</td>
            <td>10010101</td>
            <td>•</td>
            <td>&amp;#149;</td>
            <td>&amp;bull;</td>
            <td>Bullet</td>
        </tr>
        <tr>
            <td>150</td>
            <td>226</td>
            <td>96</td>
            <td>10010110</td>
            <td>–</td>
            <td>&amp;#150;</td>
            <td>&amp;ndash;</td>
            <td>En dash</td>
        </tr>
        <tr>
            <td>151</td>
            <td>227</td>
            <td>97</td>
            <td>10010111</td>
            <td>—</td>
            <td>&amp;#151;</td>
            <td>&amp;mdash;</td>
            <td>Em dash</td>
        </tr>
        <tr>
            <td>152</td>
            <td>230</td>
            <td>98</td>
            <td>10011000</td>
            <td></td>
            <td></td>
            <td></td>
            <td>Unused</td>
        </tr>
        <tr>
            <td>153</td>
            <td>231</td>
            <td>99</td>
            <td>10011001</td>
            <td><img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2122.png" alt="™" class="wp-smiley" style="height: 1em; max-height: 1em;" /></td>
            <td>&amp;#153;</td>
            <td>&amp;trade;</td>
            <td>Trade mark sign</td>
        </tr>
        <tr>
            <td>154</td>
            <td>232</td>
            <td>9A</td>
            <td>10011010</td>
            <td>š</td>
            <td>&amp;#154;</td>
            <td>&amp;scaron;</td>
            <td>Latin small letter S with caron</td>
        </tr>
        <tr>
            <td>155</td>
            <td>233</td>
            <td>9B</td>
            <td>10011011</td>
            <td>›</td>
            <td>&amp;#155;</td>
            <td>&amp;rsaquo;</td>
            <td>Single right-pointing angle quotation mark</td>
        </tr>
        <tr>
            <td>156</td>
            <td>234</td>
            <td>9C</td>
            <td>10011100</td>
            <td>ś</td>
            <td>&amp;#347;</td>
            <td>&amp;sacute;</td>
            <td>Latin small letter s with acute</td>
        </tr>
        <tr>
            <td>157</td>
            <td>235</td>
            <td>9D</td>
            <td>10011101</td>
            <td>ť</td>
            <td>&amp;#357;</td>
            <td>&amp;tcaron;</td>
            <td>Latin small letter t with caron</td>
        </tr>
        <tr>
            <td>158</td>
            <td>236</td>
            <td>9E</td>
            <td>10011110</td>
            <td>ž</td>
            <td>&amp;#158;</td>
            <td>&amp;zcaron;</td>
            <td>Latin small letter z with caron</td>
        </tr>
        <tr>
            <td>159</td>
            <td>237</td>
            <td>9F</td>
            <td>10011111</td>
            <td>ź</td>
            <td>&amp;#378;</td>
            <td>&amp;zacute;</td>
            <td>Latin small letter z with acute</td>
        </tr>
        <tr>
            <td>160</td>
            <td>240</td>
            <td>A0</td>
            <td>10100000</td>
            <td></td>
            <td>&amp;#160;</td>
            <td>&amp;nbsp;</td>
            <td>Non-breaking space</td>
        </tr>
        <tr>
            <td>161</td>
            <td>241</td>
            <td>A1</td>
            <td>10100001</td>
            <td>ˇ</td>
            <td>&amp;#711;</td>
            <td>&amp;Hacek;</td>
            <td>Caron</td>
        </tr>
        <tr>
            <td>162</td>
            <td>242</td>
            <td>A2</td>
            <td>10100010</td>
            <td>˘</td>
            <td>&amp;#728;</td>
            <td>&amp;breve;</td>
            <td>Breve</td>
        </tr>
        <tr>
            <td>163</td>
            <td>243</td>
            <td>A3</td>
            <td>10100011</td>
            <td>Ł</td>
            <td>&amp;#321;</td>
            <td>&amp;Lstrok;</td>
            <td>Latin capital letter L with stroke</td>
        </tr>
        <tr>
            <td>164</td>
            <td>244</td>
            <td>A4</td>
            <td>10100100</td>
            <td>¤</td>
            <td>&amp;#164;</td>
            <td>&amp;curren;</td>
            <td>Currency sign</td>
        </tr>
        <tr>
            <td>165</td>
            <td>245</td>
            <td>A5</td>
            <td>10100101</td>
            <td>Ą</td>
            <td>&amp;#260;</td>
            <td>&amp;Aogon;</td>
            <td>Latin capital letter A with ogonek</td>
        </tr>
        <tr>
            <td>166</td>
            <td>246</td>
            <td>A6</td>
            <td>10100110</td>
            <td>¦</td>
            <td>&amp;#166;</td>
            <td>&amp;brvbar;</td>
            <td>Pipe, broken vertical bar</td>
        </tr>
        <tr>
            <td>167</td>
            <td>247</td>
            <td>A7</td>
            <td>10100111</td>
            <td>§</td>
            <td>&amp;#167;</td>
            <td>&amp;sect;</td>
            <td>Section sign</td>
        </tr>
        <tr>
            <td>168</td>
            <td>250</td>
            <td>A8</td>
            <td>10101000</td>
            <td>¨</td>
            <td>&amp;#168;</td>
            <td>&amp;uml;</td>
            <td>Spacing diaeresis &#8211; umlaut</td>
        </tr>
        <tr>
            <td>169</td>
            <td>251</td>
            <td>A9</td>
            <td>10101001</td>
            <td>©</td>
            <td>&amp;#169;</td>
            <td>&amp;copy;</td>
            <td>Copyright sign</td>
        </tr>
        <tr>
            <td>170</td>
            <td>252</td>
            <td>AA</td>
            <td>10101010</td>
            <td>Ş</td>
            <td>&amp;#350;</td>
            <td>&amp;Scedil;</td>
            <td>Latin capital letter S with cedilla</td>
        </tr>
        <tr>
            <td>171</td>
            <td>253</td>
            <td>AB</td>
            <td>10101011</td>
            <td>«</td>
            <td>&amp;#171;</td>
            <td>&amp;laquo;</td>
            <td>Left double angle quotes</td>
        </tr>
        <tr>
            <td>172</td>
            <td>254</td>
            <td>AC</td>
            <td>10101100</td>
            <td>¬</td>
            <td>&amp;#172;</td>
            <td>&amp;not;</td>
            <td>Negation</td>
        </tr>
        <tr>
            <td>173</td>
            <td>255</td>
            <td>AD</td>
            <td>10101101</td>
            <td>­</td>
            <td>&amp;#173;</td>
            <td>&amp;shy;</td>
            <td>Soft hyphen</td>
        </tr>
        <tr>
            <td>174</td>
            <td>256</td>
            <td>AE</td>
            <td>10101110</td>
            <td>®</td>
            <td>&amp;#174;</td>
            <td>&amp;reg;</td>
            <td>Registered trade mark sign</td>
        </tr>
        <tr>
            <td>175</td>
            <td>257</td>
            <td>AF</td>
            <td>10101111</td>
            <td>Ż</td>
            <td>&amp;#379;</td>
            <td>&amp;Zdot;</td>
            <td>Latin capital letter Z with dot above</td>
        </tr>
        <tr>
            <td>176</td>
            <td>260</td>
            <td>B0</td>
            <td>10110000</td>
            <td>°</td>
            <td>&amp;#176;</td>
            <td>&amp;deg;</td>
            <td>Degree sign</td>
        </tr>
        <tr>
            <td>177</td>
            <td>261</td>
            <td>B1</td>
            <td>10110001</td>
            <td>±</td>
            <td>&amp;#177;</td>
            <td>&amp;plusmn;</td>
            <td>Plus-or-minus sign</td>
        </tr>
        <tr>
            <td>178</td>
            <td>262</td>
            <td>B2</td>
            <td>10110010</td>
            <td>˛</td>
            <td>&amp;#731;</td>
            <td>&amp;ogon;</td>
            <td>Ogonek</td>
        </tr>
        <tr>
            <td>179</td>
            <td>263</td>
            <td>B3</td>
            <td>10110011</td>
            <td>ł</td>
            <td>&amp;#322;</td>
            <td>&amp;lstrok;</td>
            <td>Latin small letter l with stroke</td>
        </tr>
        <tr>
            <td>180</td>
            <td>264</td>
            <td>B4</td>
            <td>10110100</td>
            <td>´</td>
            <td>&amp;#180;</td>
            <td>&amp;acute;</td>
            <td>Acute accent &#8211; spacing acute</td>
        </tr>
        <tr>
            <td>181</td>
            <td>265</td>
            <td>B5</td>
            <td>10110101</td>
            <td>µ</td>
            <td>&amp;#181;</td>
            <td>&amp;micro;</td>
            <td>Micro sign</td>
        </tr>
        <tr>
            <td>182</td>
            <td>266</td>
            <td>B6</td>
            <td>10110110</td>
            <td>¶</td>
            <td>&amp;#182;</td>
            <td>&amp;para;</td>
            <td>Pilcrow sign &#8211; paragraph sign</td>
        </tr>
        <tr>
            <td>183</td>
            <td>267</td>
            <td>B7</td>
            <td>10110111</td>
            <td>·</td>
            <td>&amp;#183;</td>
            <td>&amp;middot;</td>
            <td>Middle dot &#8211; Georgian comma</td>
        </tr>
        <tr>
            <td>184</td>
            <td>270</td>
            <td>B8</td>
            <td>10111000</td>
            <td>¸</td>
            <td>&amp;#184;</td>
            <td>&amp;cedil;</td>
            <td>Spacing cedilla</td>
        </tr>
        <tr>
            <td>185</td>
            <td>271</td>
            <td>B9</td>
            <td>10111001</td>
            <td>ą</td>
            <td>&amp;#261;</td>
            <td>&amp;aogon;</td>
            <td>Latin small letter a with ogonek</td>
        </tr>
        <tr>
            <td>186</td>
            <td>272</td>
            <td>BA</td>
            <td>10111010</td>
            <td>ş</td>
            <td>&amp;#351;</td>
            <td>&amp;scedil;</td>
            <td>Latin small letter s with cedilla</td>
        </tr>
        <tr>
            <td>187</td>
            <td>273</td>
            <td>BB</td>
            <td>10111011</td>
            <td>»</td>
            <td>&amp;#187;</td>
            <td>&amp;raquo;</td>
            <td>Right double angle quotes</td>
        </tr>
        <tr>
            <td>188</td>
            <td>274</td>
            <td>BC</td>
            <td>10111100</td>
            <td>Ľ</td>
            <td>&amp;#317;</td>
            <td>&amp;Lcaron;</td>
            <td>Latin capital letter L with caron</td>
        </tr>
        <tr>
            <td>189</td>
            <td>275</td>
            <td>BD</td>
            <td>10111101</td>
            <td>˝</td>
            <td>&amp;#733;</td>
            <td>&amp;DiacriticalDoubleAcute;</td>
            <td>Double acute accent</td>
        </tr>
        <tr>
            <td>190</td>
            <td>276</td>
            <td>BE</td>
            <td>10111110</td>
            <td>ľ</td>
            <td>&amp;#318;</td>
            <td>&amp;lcaron;</td>
            <td>Latin small letter l with caron</td>
        </tr>
        <tr>
            <td>191</td>
            <td>277</td>
            <td>BF</td>
            <td>10111111</td>
            <td>ż</td>
            <td>&amp;#380;</td>
            <td>&amp;zdot;</td>
            <td>Latin small letter z with dot above</td>
        </tr>
        <tr>
            <td>192</td>
            <td>300</td>
            <td>C0</td>
            <td>11000000</td>
            <td>Ŕ</td>
            <td>&amp;#340;</td>
            <td>&amp;Racute;</td>
            <td>Latin capital letter R with acute</td>
        </tr>
        <tr>
            <td>193</td>
            <td>301</td>
            <td>C1</td>
            <td>11000001</td>
            <td>Á</td>
            <td>&amp;#193;</td>
            <td>&amp;Aacute;</td>
            <td>Latin capital letter A with acute</td>
        </tr>
        <tr>
            <td>194</td>
            <td>302</td>
            <td>C2</td>
            <td>11000010</td>
            <td>Â</td>
            <td>&amp;#194;</td>
            <td>&amp;Acirc;</td>
            <td>Latin capital letter A with circumflex</td>
        </tr>
        <tr>
            <td>195</td>
            <td>303</td>
            <td>C3</td>
            <td>11000011</td>
            <td>Ă</td>
            <td>&amp;#258;</td>
            <td>&amp;Abreve;</td>
            <td>Latin capital letter A with breve</td>
        </tr>
        <tr>
            <td>196</td>
            <td>304</td>
            <td>C4</td>
            <td>11000100</td>
            <td>Ä</td>
            <td>&amp;#196;</td>
            <td>&amp;Auml;</td>
            <td>Latin capital letter A with diaeresis</td>
        </tr>
        <tr>
            <td>197</td>
            <td>305</td>
            <td>C5</td>
            <td>11000101</td>
            <td>Ĺ</td>
            <td>&amp;#313;</td>
            <td>&amp;Lacute;</td>
            <td>Latin capital letter L with acute</td>
        </tr>
        <tr>
            <td>198</td>
            <td>306</td>
            <td>C6</td>
            <td>11000110</td>
            <td>Ć</td>
            <td>&amp;#262;</td>
            <td>&amp;Cacute;</td>
            <td>Latin capital letter C with acute</td>
        </tr>
        <tr>
            <td>199</td>
            <td>307</td>
            <td>C7</td>
            <td>11000111</td>
            <td>Ç</td>
            <td>&amp;#199;</td>
            <td>&amp;Ccedil;</td>
            <td>Latin capital letter C with cedilla</td>
        </tr>
        <tr>
            <td>200</td>
            <td>310</td>
            <td>C8</td>
            <td>11001000</td>
            <td>Č</td>
            <td>&amp;#268;</td>
            <td>&amp;Ccaron;</td>
            <td>Latin capital letter C with caron</td>
        </tr>
        <tr>
            <td>201</td>
            <td>311</td>
            <td>C9</td>
            <td>11001001</td>
            <td>É</td>
            <td>&amp;#201;</td>
            <td>&amp;Eacute;</td>
            <td>Latin capital letter E with acute</td>
        </tr>
        <tr>
            <td>202</td>
            <td>312</td>
            <td>CA</td>
            <td>11001010</td>
            <td>Ę</td>
            <td>&amp;#280;</td>
            <td>&amp;Eogon;</td>
            <td>Latin capital letter E with ogonek</td>
        </tr>
        <tr>
            <td>203</td>
            <td>313</td>
            <td>CB</td>
            <td>11001011</td>
            <td>Ë</td>
            <td>&amp;#203;</td>
            <td>&amp;Euml;</td>
            <td>Latin capital letter E with diaeresis</td>
        </tr>
        <tr>
            <td>204</td>
            <td>314</td>
            <td>CC</td>
            <td>11001100</td>
            <td>Ě</td>
            <td>&amp;#282;</td>
            <td>&amp;Ecaron;</td>
            <td>Latin capital letter E with caron</td>
        </tr>
        <tr>
            <td>205</td>
            <td>315</td>
            <td>CD</td>
            <td>11001101</td>
            <td>Í</td>
            <td>&amp;#205;</td>
            <td>&amp;Iacute;</td>
            <td>Latin capital letter I with acute</td>
        </tr>
        <tr>
            <td>206</td>
            <td>316</td>
            <td>CE</td>
            <td>11001110</td>
            <td>Î</td>
            <td>&amp;#206;</td>
            <td>&amp;Icirc;</td>
            <td>Latin capital letter I with circumflex</td>
        </tr>
        <tr>
            <td>207</td>
            <td>317</td>
            <td>CF</td>
            <td>11001111</td>
            <td>Ď</td>
            <td>&amp;#270;</td>
            <td>&amp;Dcaron;</td>
            <td>Latin capital letter D with caron</td>
        </tr>
        <tr>
            <td>208</td>
            <td>320</td>
            <td>D0</td>
            <td>11010000</td>
            <td>Đ</td>
            <td>&amp;#272;</td>
            <td>&amp;Dstrok;</td>
            <td>Latin capital letter D with stroke</td>
        </tr>
        <tr>
            <td>209</td>
            <td>321</td>
            <td>D1</td>
            <td>11010001</td>
            <td>Ń</td>
            <td>&amp;#323;</td>
            <td>&amp;Nacute;</td>
            <td>Latin capital letter N with acute</td>
        </tr>
        <tr>
            <td>210</td>
            <td>322</td>
            <td>D2</td>
            <td>11010010</td>
            <td>Ň</td>
            <td>&amp;#327;</td>
            <td>&amp;Ncaron;</td>
            <td>Latin capital letter N with caron</td>
        </tr>
        <tr>
            <td>211</td>
            <td>323</td>
            <td>D3</td>
            <td>11010011</td>
            <td>Ó</td>
            <td>&amp;#211;</td>
            <td>&amp;Oacute;</td>
            <td>Latin capital letter O with acute</td>
        </tr>
        <tr>
            <td>212</td>
            <td>324</td>
            <td>D4</td>
            <td>11010100</td>
            <td>Ô</td>
            <td>&amp;#212;</td>
            <td>&amp;Ocirc;</td>
            <td>Latin capital letter O with circumflex</td>
        </tr>
        <tr>
            <td>213</td>
            <td>325</td>
            <td>D5</td>
            <td>11010101</td>
            <td>Ő</td>
            <td>&amp;#336;</td>
            <td>&amp;Odblac;</td>
            <td>Latin capital letter O with double acute</td>
        </tr>
        <tr>
            <td>214</td>
            <td>326</td>
            <td>D6</td>
            <td>11010110</td>
            <td>Ö</td>
            <td>&amp;#214;</td>
            <td>&amp;Ouml;</td>
            <td>Latin capital letter O with diaeresis</td>
        </tr>
        <tr>
            <td>215</td>
            <td>327</td>
            <td>D7</td>
            <td>11010111</td>
            <td>×</td>
            <td>&amp;#215;</td>
            <td>&amp;times;</td>
            <td>Multiplication sign</td>
        </tr>
        <tr>
            <td>216</td>
            <td>330</td>
            <td>D8</td>
            <td>11011000</td>
            <td>Ř</td>
            <td>&amp;#344;</td>
            <td>&amp;Rcaron;</td>
            <td>Latin capital letter R with caron</td>
        </tr>
        <tr>
            <td>217</td>
            <td>331</td>
            <td>D9</td>
            <td>11011001</td>
            <td>Ů</td>
            <td>&amp;#366;</td>
            <td>&amp;Uring;</td>
            <td>Latin capital letter U with ring above</td>
        </tr>
        <tr>
            <td>218</td>
            <td>332</td>
            <td>DA</td>
            <td>11011010</td>
            <td>Ú</td>
            <td>&amp;#218;</td>
            <td>&amp;Uacute;</td>
            <td>Latin capital letter U with acute</td>
        </tr>
        <tr>
            <td>219</td>
            <td>333</td>
            <td>DB</td>
            <td>11011011</td>
            <td>Ű</td>
            <td>&amp;#368;</td>
            <td>&amp;Udblac;</td>
            <td>Latin capital letter U with double acute</td>
        </tr>
        <tr>
            <td>220</td>
            <td>334</td>
            <td>DC</td>
            <td>11011100</td>
            <td>Ü</td>
            <td>&amp;#220;</td>
            <td>&amp;Uuml;</td>
            <td>Latin capital letter U with diaeresis</td>
        </tr>
        <tr>
            <td>221</td>
            <td>335</td>
            <td>DD</td>
            <td>11011101</td>
            <td>Ý</td>
            <td>&amp;#221;</td>
            <td>&amp;Yacute;</td>
            <td>Latin capital letter Y with acute</td>
        </tr>
        <tr>
            <td>222</td>
            <td>336</td>
            <td>DE</td>
            <td>11011110</td>
            <td>Ţ</td>
            <td>&amp;#354;</td>
            <td>&amp;Tcedil;</td>
            <td>Latin capital letter T with cedilla</td>
        </tr>
        <tr>
            <td>223</td>
            <td>337</td>
            <td>DF</td>
            <td>11011111</td>
            <td>ß</td>
            <td>&amp;#223;</td>
            <td>&amp;szlig;</td>
            <td>Latin small letter sharp s &#8211; ess-zed</td>
        </tr>
        <tr>
            <td>224</td>
            <td>340</td>
            <td>E0</td>
            <td>11100000</td>
            <td>ŕ</td>
            <td>&amp;#341;</td>
            <td>&amp;racute;</td>
            <td>Latin small letter r with acute</td>
        </tr>
        <tr>
            <td>225</td>
            <td>341</td>
            <td>E1</td>
            <td>11100001</td>
            <td>á</td>
            <td>&amp;#225;</td>
            <td>&amp;aacute;</td>
            <td>Latin small letter a with acute</td>
        </tr>
        <tr>
            <td>226</td>
            <td>342</td>
            <td>E2</td>
            <td>11100010</td>
            <td>â</td>
            <td>&amp;#226;</td>
            <td>&amp;acirc;</td>
            <td>Latin small letter a with circumflex</td>
        </tr>
        <tr>
            <td>227</td>
            <td>343</td>
            <td>E3</td>
            <td>11100011</td>
            <td>ă</td>
            <td>&amp;#259;</td>
            <td>&amp;abreve;</td>
            <td>Latin small letter a with breve</td>
        </tr>
        <tr>
            <td>228</td>
            <td>344</td>
            <td>E4</td>
            <td>11100100</td>
            <td>ä</td>
            <td>&amp;#228;</td>
            <td>&amp;auml;</td>
            <td>Latin small letter a with diaeresis</td>
        </tr>
        <tr>
            <td>229</td>
            <td>345</td>
            <td>E5</td>
            <td>11100101</td>
            <td>ĺ</td>
            <td>&amp;#314;</td>
            <td>&amp;lacute;</td>
            <td>Latin small letter l with acute</td>
        </tr>
        <tr>
            <td>230</td>
            <td>346</td>
            <td>E6</td>
            <td>11100110</td>
            <td>ć</td>
            <td>&amp;#263;</td>
            <td>&amp;cacute;</td>
            <td>Latin small letter c with acute</td>
        </tr>
        <tr>
            <td>231</td>
            <td>347</td>
            <td>E7</td>
            <td>11100111</td>
            <td>ç</td>
            <td>&amp;#231;</td>
            <td>&amp;ccedil;</td>
            <td>Latin small letter c with cedilla</td>
        </tr>
        <tr>
            <td>232</td>
            <td>350</td>
            <td>E8</td>
            <td>11101000</td>
            <td>č</td>
            <td>&amp;#269;</td>
            <td>&amp;ccaron;</td>
            <td>Latin small letter c with caron</td>
        </tr>
        <tr>
            <td>233</td>
            <td>351</td>
            <td>E9</td>
            <td>11101001</td>
            <td>é</td>
            <td>&amp;#233;</td>
            <td>&amp;eacute;</td>
            <td>Latin small letter e with acute</td>
        </tr>
        <tr>
            <td>234</td>
            <td>352</td>
            <td>EA</td>
            <td>11101010</td>
            <td>ę</td>
            <td>&amp;#281;</td>
            <td>&amp;eogon;</td>
            <td>Latin small letter e with ogonek</td>
        </tr>
        <tr>
            <td>235</td>
            <td>353</td>
            <td>EB</td>
            <td>11101011</td>
            <td>ë</td>
            <td>&amp;#235;</td>
            <td>&amp;euml;</td>
            <td>Latin small letter e with diaeresis</td>
        </tr>
        <tr>
            <td>236</td>
            <td>354</td>
            <td>EC</td>
            <td>11101100</td>
            <td>ě</td>
            <td>&amp;#283;</td>
            <td>&amp;ecaron;</td>
            <td>Latin small letter e with caron</td>
        </tr>
        <tr>
            <td>237</td>
            <td>355</td>
            <td>ED</td>
            <td>11101101</td>
            <td>í</td>
            <td>&amp;#237;</td>
            <td>&amp;iacute;</td>
            <td>Latin small letter i with acute</td>
        </tr>
        <tr>
            <td>238</td>
            <td>356</td>
            <td>EE</td>
            <td>11101110</td>
            <td>î</td>
            <td>&amp;#238;</td>
            <td>&amp;icirc;</td>
            <td>Latin small letter i with circumflex</td>
        </tr>
        <tr>
            <td>239</td>
            <td>357</td>
            <td>EF</td>
            <td>11101111</td>
            <td>ď</td>
            <td>&amp;#271;</td>
            <td>&amp;dcaron;</td>
            <td>Latin small letter d with caron</td>
        </tr>
        <tr>
            <td>240</td>
            <td>360</td>
            <td>F0</td>
            <td>11110000</td>
            <td>đ</td>
            <td>&amp;#273;</td>
            <td>&amp;dstrok;</td>
            <td>Latin small letter d with stroke</td>
        </tr>
        <tr>
            <td>241</td>
            <td>361</td>
            <td>F1</td>
            <td>11110001</td>
            <td>ń</td>
            <td>&amp;#324;</td>
            <td>&amp;nacute;</td>
            <td>Latin xmall letter n with acute</td>
        </tr>
        <tr>
            <td>242</td>
            <td>362</td>
            <td>F2</td>
            <td>11110010</td>
            <td>ň</td>
            <td>&amp;#328;</td>
            <td>&amp;ncaron;</td>
            <td>Latin small letter n with caron</td>
        </tr>
        <tr>
            <td>243</td>
            <td>363</td>
            <td>F3</td>
            <td>11110011</td>
            <td>ó</td>
            <td>&amp;#243;</td>
            <td>&amp;oacute;</td>
            <td>Latin small letter o with acute</td>
        </tr>
        <tr>
            <td>244</td>
            <td>364</td>
            <td>F4</td>
            <td>11110100</td>
            <td>ô</td>
            <td>&amp;#244;</td>
            <td>&amp;ocirc;</td>
            <td>Latin small letter o with circumflex</td>
        </tr>
        <tr>
            <td>245</td>
            <td>365</td>
            <td>F5</td>
            <td>11110101</td>
            <td>ő</td>
            <td>&amp;#337;</td>
            <td>&amp;odblac;</td>
            <td>Latin small letter o with double acute</td>
        </tr>
        <tr>
            <td>246</td>
            <td>366</td>
            <td>F6</td>
            <td>11110110</td>
            <td>ö</td>
            <td>&amp;#246;</td>
            <td>&amp;ouml;</td>
            <td>Latin small letter o with diaeresis</td>
        </tr>
        <tr>
            <td>247</td>
            <td>367</td>
            <td>F7</td>
            <td>11110111</td>
            <td>÷</td>
            <td>&amp;#247;</td>
            <td>&amp;divide;</td>
            <td>Division sign</td>
        </tr>
        <tr>
            <td>248</td>
            <td>370</td>
            <td>F8</td>
            <td>11111000</td>
            <td>ř</td>
            <td>&amp;#345;</td>
            <td>&amp;rcaron;</td>
            <td>Latin small letter r with caron</td>
        </tr>
        <tr>
            <td>249</td>
            <td>371</td>
            <td>F9</td>
            <td>11111001</td>
            <td>ů</td>
            <td>&amp;#367;</td>
            <td>&amp;uring;</td>
            <td>Latin small letter u with ring above</td>
        </tr>
        <tr>
            <td>250</td>
            <td>372</td>
            <td>FA</td>
            <td>11111010</td>
            <td>ú</td>
            <td>&amp;#250;</td>
            <td>&amp;uacute;</td>
            <td>Latin small letter u with acute</td>
        </tr>
        <tr>
            <td>251</td>
            <td>373</td>
            <td>FB</td>
            <td>11111011</td>
            <td>ű</td>
            <td>&amp;#369;</td>
            <td>&amp;udblac;</td>
            <td>Latin small letter u with double acute</td>
        </tr>
        <tr>
            <td>252</td>
            <td>374</td>
            <td>FC</td>
            <td>11111100</td>
            <td>ü</td>
            <td>&amp;#252;</td>
            <td>&amp;uuml;</td>
            <td>Latin small letter u with diaeresis</td>
        </tr>
        <tr>
            <td>253</td>
            <td>375</td>
            <td>FD</td>
            <td>11111101</td>
            <td>ý</td>
            <td>&amp;#253;</td>
            <td>&amp;yacute;</td>
            <td>Latin small letter y with acute</td>
        </tr>
        <tr>
            <td>254</td>
            <td>376</td>
            <td>FE</td>
            <td>11111110</td>
            <td>ţ</td>
            <td>&amp;#355;</td>
            <td>&amp;tcedil;</td>
            <td>Latin small letter t with cedilla</td>
        </tr>
        <tr>
            <td>255</td>
            <td>377</td>
            <td>FF</td>
            <td>11111111</td>
            <td>˙</td>
            <td>&amp;#729;</td>
            <td>&amp;DiacriticalDot;</td>
            <td>Dot above</td>
        </tr>
    </tbody>
</table>



<br>



<figure class="wp-block-image size-large"><img decoding="async" src="https://www.codeindotnet.com/img/htmlcss/ascii-table-windows-1250.jpg" alt="ascii-table-windows-1250"/></figure>



<br>



<p>ASCII References: <a href="https://en.wikipedia.org/wiki/Extended_ASCII" data-type="URL" data-id="https://en.wikipedia.org/wiki/Extended_ASCII" target="_blank" rel="noopener">ref<sup>1</sup></a>, <a href="https://en.wikipedia.org/wiki/Windows-1250" data-type="URL" data-id="https://en.wikipedia.org/wiki/Windows-1250" target="_blank" rel="noreferrer noopener nofollow">ref<sup>2</sup></a></p>



<br>



<div style="padding: 10px 20px 20px 20px; box-shadow: 1px 1px 15px 0px lightgrey; margin-bottom: 20px; border-radius: 10px;">
<div><span style="border-bottom: 1px solid #cd5c5c; color:#cd5c5c;"><b><i>popular readings:</i></b></span></div>
	<div style="padding-left:15px;">

	<div style="padding-top:10px;"><b>&#8211; <a href="https://www.codeindotnet.com/what-is-dapper-micro-orm-in-c/">What is Dapper micro-ORM in C#?</a></b></div>
	<div><b>&#8211; <a href="https://www.codeindotnet.com/how-to-integrate-mailchimp-v3-0-api-in-dotnet-core-c/">How to Integrate MailChimp v3.0 API in DotNet Core C#</a></b></div>
	<div><b>&#8211; <a href="https://www.codeindotnet.com/export-dataset-to-excel-in-c-net-core-openxml/">Export DataSet To Excel in C# .Net Core – OpenXml</a></b></div>
	<div><b>&#8211; <a href="https://www.codeindotnet.com/dynamically-add-anchor-tag-in-div-html-javascript/">Dynamically generate anchor tag in div HTML  javascript</a></b></div>

	</div>
</div>



<br><br>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
