Files
hustoj/web/cppreference-zh/chmhelp/c-string-wide-iswdigit.html
2025-08-01 12:57:54 +08:00

456 lines
36 KiB
HTML

<!DOCTYPE html>
<html lang="zh" dir="ltr" class="client-nojs" xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh">
<head><meta http-equiv="x-ua-compatible" content="ie=edge">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>iswdigit</title>
<link rel="stylesheet" href="ext.css" />
<link rel="stylesheet" href="site_modules.css" />
</head>
<body class="mediawiki ltr sitedir-ltr ns-0 ns-subject page-c_string_wide_iswdigit skin-cppreference2 action-view cpp-navbar">
<div id="cpp-content-base">
<div id="content"><a id="top"></a>
<h1 id="firstHeading" class="firstHeading">iswdigit</h1>
<div id="bodyContent">
<div id="contentSub"><span class="subpages">&lt; <a href="c.html">c</a>&lrm; | <a href="c-string.html">string</a>&lrm; | <a href="c-string-wide.html">wide</a></span></div>
<div id="mw-content-text" lang="zh" dir="ltr" class="mw-content-ltr" xml:lang="zh">
<table class="t-dcl-begin">
<tbody>
<tr class="t-dsc-header">
<td>
<div>&#23450;&#20041;&#20110;&#22836;&#25991;&#20214; <code>&lt;wctype.h&gt;</code></div>
</td>
<td></td>
<td></td>
</tr>
<tr class="t-dcl t-since-c95">
<td>
<div><span class="mw-geshi c source-c"><span class="kw4">int</span> iswdigit<span class="br0">(</span> wint_t ch <span class="br0">)</span><span class="sy4">;</span></span></div>
</td>
<td class="t-dcl-nopad"></td>
<td><span class="t-mark-rev t-since-c95">(C95 &#36215;)</span></td>
</tr>
<tr class="t-dcl-sep">
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<p>&#26816;&#26597;&#32473;&#23450;&#30340;&#23485;&#23383;&#31526;&#65288;&#33509;&#31364;&#21270;&#65289;&#26159;&#21542;&#23545;&#24212;&#21313;&#36827;&#21046;&#25968;&#23383; <code>0123456789</code> &#20043;&#19968;&#12290;</p>
<h3><span class="mw-headline" id=".E5.8F.82.E6.95.B0">&#21442;&#25968;</span></h3>
<table class="t-par-begin">
<tr class="t-par">
<td>ch</td>
<td>-</td>
<td>&#23485;&#23383;&#31526;</td>
</tr>
</table>
<h3><span class="mw-headline" id=".E8.BF.94.E5.9B.9E.E5.80.BC">&#36820;&#22238;&#20540;</span></h3>
<p>&#33509;&#23485;&#23383;&#31526;&#20026;&#25968;&#23383;&#23383;&#31526;&#21017;&#20026;&#38750;&#38646;&#20540;&#65292;&#21542;&#21017;&#20026;&#38646;&#12290;</p>
<h3><span class="mw-headline" id=".E6.B3.A8.E6.84.8F">&#27880;&#24847;</span></h3>
<p><code>iswdigit</code> &#19982; <span class="t-lc"><a href="c-string-wide-iswxdigit.html">iswxdigit</a></span> &#26159;&#20165;&#26377;&#30340;&#19981;&#21463;&#24403;&#21069;&#23433;&#35013;&#30340;C&#26412;&#22320;&#29615;&#22659;&#24433;&#21709;&#30340;&#26631;&#20934;&#23485;&#23383;&#31526;&#20998;&#31867;&#20989;&#25968;&#12290;</p>
<h3><span class="mw-headline" id=".E7.A4.BA.E4.BE.8B">&#31034;&#20363;</span></h3>
<div class="t-example">
<p>&#19968;&#20123;&#26412;&#22320;&#29615;&#22659;&#25552;&#20379;&#39069;&#22806;&#30340;&#26816;&#27979;&#38750; ASCII &#25968;&#23383;&#30340;&#23383;&#31526;&#31867;</p>
<div class="t-example-live-link"></div>
<div dir="ltr" class="mw-geshi" style="text-align: left;">
<div class="c source-c">
<pre class="de1"><span class="co2">#include &lt;stdio.h&gt;</span>
<span class="co2">#include &lt;wctype.h&gt;</span>
<span class="co2">#include &lt;wchar.h&gt;</span>
<span class="co2">#include &lt;locale.h&gt;</span>
<span class="kw4">void</span> test<span class="br0">(</span><span class="kw4">wchar_t</span> a3, <span class="kw4">wchar_t</span> u3, <span class="kw4">wchar_t</span> j3<span class="br0">)</span>
<span class="br0">{</span>
<a href="c-io-fprintf.html"><span class="kw850">printf</span></a><span class="br0">(</span><span class="st0">&quot; &#39;%lc&#39; &#39;%lc&#39; &#39;%lc&#39;<span class="es1">\n</span>&quot;</span>, a3, u3, j3<span class="br0">)</span><span class="sy4">;</span>
<a href="c-io-fprintf.html"><span class="kw850">printf</span></a><span class="br0">(</span><span class="st0">&quot;iswdigit %d %d %d<span class="es1">\n</span>&quot;</span>,
<span class="sy3">!!</span>iswdigit<span class="br0">(</span>a3<span class="br0">)</span>, <span class="sy3">!!</span>iswdigit<span class="br0">(</span>u3<span class="br0">)</span>, <span class="sy3">!!</span>iswdigit<span class="br0">(</span>j3<span class="br0">)</span><span class="br0">)</span><span class="sy4">;</span>
<a href="c-io-fprintf.html"><span class="kw850">printf</span></a><span class="br0">(</span><span class="st0">&quot;jdigit: %d %d %d<span class="es1">\n</span>&quot;</span>, <span class="sy3">!!</span><a href="c-string-wide-iswctype.html"><span class="kw604">iswctype</span></a><span class="br0">(</span>a3, <a href="c-string-wide-wctype.html"><span class="kw605">wctype</span></a><span class="br0">(</span><span class="st0">&quot;jdigit&quot;</span><span class="br0">)</span><span class="br0">)</span>,
<span class="sy3">!!</span><a href="c-string-wide-iswctype.html"><span class="kw604">iswctype</span></a><span class="br0">(</span>u3, <a href="c-string-wide-wctype.html"><span class="kw605">wctype</span></a><span class="br0">(</span><span class="st0">&quot;jdigit&quot;</span><span class="br0">)</span><span class="br0">)</span>,
<span class="sy3">!!</span><a href="c-string-wide-iswctype.html"><span class="kw604">iswctype</span></a><span class="br0">(</span>j3, <a href="c-string-wide-wctype.html"><span class="kw605">wctype</span></a><span class="br0">(</span><span class="st0">&quot;jdigit&quot;</span><span class="br0">)</span><span class="br0">)</span><span class="br0">)</span><span class="sy4">;</span>
<span class="br0">}</span>
<span class="kw4">int</span> main<span class="br0">(</span><span class="kw4">void</span><span class="br0">)</span>
<span class="br0">{</span>
<span class="kw4">wchar_t</span> a3 <span class="sy1">=</span> L<span class="st0">&#39;3&#39;</span><span class="sy4">;</span> <span class="co1">// ASCII &#25968;&#23383; 3</span>
<span class="kw4">wchar_t</span> u3 <span class="sy1">=</span> L<span class="st0">&#39;&#19977;&#39;</span><span class="sy4">;</span> <span class="co1">// CJK &#25968;&#23383; 3</span>
<span class="kw4">wchar_t</span> j3 <span class="sy1">=</span> L<span class="st0">&#39;&#65299;&#39;</span><span class="sy4">;</span> <span class="co1">// &#20840;&#35282;&#25968;&#23383; 3</span>
<a href="c-locale-setlocale.html"><span class="kw900">setlocale</span></a><span class="br0">(</span><a href="c-locale-LC_categories.html"><span class="kw903">LC_ALL</span></a>, <span class="st0">&quot;en_US.utf8&quot;</span><span class="br0">)</span><span class="sy4">;</span>
<a href="c-io-puts.html"><span class="kw835">puts</span></a><span class="br0">(</span><span class="st0">&quot;In American locale:&quot;</span><span class="br0">)</span><span class="sy4">;</span>
test<span class="br0">(</span>a3, u3, j3<span class="br0">)</span><span class="sy4">;</span>
<a href="c-locale-setlocale.html"><span class="kw900">setlocale</span></a><span class="br0">(</span><a href="c-locale-LC_categories.html"><span class="kw903">LC_ALL</span></a>, <span class="st0">&quot;ja_JP.utf8&quot;</span><span class="br0">)</span><span class="sy4">;</span>
<a href="c-io-puts.html"><span class="kw835">puts</span></a><span class="br0">(</span><span class="st0">&quot;<span class="es1">\n</span>In Japanese locale:&quot;</span><span class="br0">)</span><span class="sy4">;</span>
test<span class="br0">(</span>a3, u3, j3<span class="br0">)</span><span class="sy4">;</span>
<span class="br0">}</span></pre></div>
</div>
<p>&#36755;&#20986;&#65306;</p>
<div dir="ltr" class="mw-geshi" style="text-align: left;">
<div class="text source-text">
<pre class="de1">In American locale:
&#39;3&#39; &#39;&#19977;&#39; &#39;&#65299;&#39;
iswdigit 1 0 0
jdigit: 0 0 0
In Japanese locale:
&#39;3&#39; &#39;&#19977;&#39; &#39;&#65299;&#39;
iswdigit 1 0 0
jdigit: 0 0 1</pre></div>
</div>
</div>
<h3><span class="mw-headline" id=".E5.BC.95.E7.94.A8">&#24341;&#29992;</span></h3>
<div class="t-ref-std-11">
<ul>
<li>C11 &#26631;&#20934;&#65288;ISO/IEC 9899:2011&#65289;&#65306;</li>
</ul>
<dl>
<dd>
<ul>
<li>7.30.2.1.5 The iswdigit function (p: 449)</li>
</ul>
</dd>
</dl>
<div class="t-ref-std-c99">
<ul>
<li>C99 &#26631;&#20934;&#65288;ISO/IEC 9899:1999&#65289;&#65306;</li>
</ul>
<dl>
<dd>
<ul>
<li>7.25.2.1.5 The iswdigit function (p: 395)</li>
</ul>
</dd>
</dl>
</div>
<h3><span class="mw-headline" id=".E5.8F.82.E9.98.85">&#21442;&#38405;</span></h3>
<table class="t-dsc-begin">
<tr class="t-dsc">
<td>
<div class="t-dsc-member-div">
<div><a href="c-string-byte-isdigit.html"><span class="t-lines"><span>isdigit</span></span></a></div>
</div>
</td>
<td>&#26816;&#26597;&#23383;&#31526;&#26159;&#21542;&#20026;&#25968;&#23383;<br />
<span class="t-mark">(&#20989;&#25968;)</span></td>
</tr>
</table>
<table class="wikitable" style="font-size:85%; text-align:center;">
<tr>
<th colspan="2">ASCII&#20540;<br />
(&#21313;&#20845;&#36827;&#21046;)</th>
<th>&#23383;&#31526;</th>
<th style="font-size:85%;">
<p><a href="c-string-byte-iscntrl.html"><tt>iscntrl</tt></a><br />
<a href="c-string-wide-iswcntrl.html"><tt>iswcntrl</tt></a></p>
</th>
<th style="font-size:85%;">
<p><a href="c-string-byte-isprint.html"><tt>isprint</tt></a><br />
<a href="c-string-wide-iswprint.html"><tt>iswprint</tt></a></p>
</th>
<th style="font-size:85%;">
<p><a href="c-string-byte-isspace.html"><tt>isspace</tt></a><br />
<a href="c-string-wide-iswspace.html"><tt>iswspace</tt></a></p>
</th>
<th style="font-size:85%;">
<p><a href="c-string-byte-isblank.html"><tt>isblank</tt></a><br />
<a href="c-string-wide-iswblank.html"><tt>iswblank</tt></a></p>
</th>
<th style="font-size:85%;">
<p><a href="c-string-byte-isgraph.html"><tt>isgraph</tt></a><br />
<a href="c-string-wide-iswgraph.html"><tt>iswgraph</tt></a></p>
</th>
<th style="font-size:85%;">
<p><a href="c-string-byte-ispunct.html"><tt>ispunct</tt></a><br />
<a href="c-string-wide-iswpunct.html"><tt>iswpunct</tt></a></p>
</th>
<th style="font-size:85%;">
<p><a href="c-string-byte-isalnum.html"><tt>isalnum</tt></a><br />
<a href="c-string-wide-iswalnum.html"><tt>iswalnum</tt></a></p>
</th>
<th style="font-size:85%;">
<p><a href="c-string-byte-isalpha.html"><tt>isalpha</tt></a><br />
<a href="c-string-wide-iswalpha.html"><tt>iswalpha</tt></a></p>
</th>
<th style="font-size:85%;">
<p><a href="c-string-byte-isupper.html"><tt>isupper</tt></a><br />
<a href="c-string-wide-iswupper.html"><tt>iswupper</tt></a></p>
</th>
<th style="font-size:85%;">
<p><a href="c-string-byte-islower.html"><tt>islower</tt></a><br />
<a href="c-string-wide-iswlower.html"><tt>iswlower</tt></a></p>
</th>
<th style="font-size:85%;">
<p><a href="c-string-byte-isdigit.html"><tt>isdigit</tt></a><br />
<strong class="selflink"><tt>iswdigit</tt></strong></p>
</th>
<th style="font-size:85%;">
<p><a href="c-string-byte-isxdigit.html"><tt>isxdigit</tt></a><br />
<a href="c-string-wide-iswxdigit.html"><tt>iswxdigit</tt></a></p>
</th>
</tr>
<tr>
<td>0 - 8</td>
<td><code>0x00-0x08</code></td>
<td>&#25511;&#21046;&#30721; (<code>NUL</code>&#31561;)</td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
</tr>
<tr>
<td>9</td>
<td><code>0x09</code></td>
<td>&#21046;&#34920;&#31526; (<code>\t</code>)</td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
</tr>
<tr>
<td>10 - 13</td>
<td><code>0x0A-0x0D</code></td>
<td>&#31354;&#30333;&#31526; (<code>\n</code>, <code>\v</code>, <code>\f</code>, <code>\r</code>)</td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
</tr>
<tr>
<td>14 - 31</td>
<td><code>0x0E-0x1F</code></td>
<td>&#25511;&#21046;&#30721;</td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
</tr>
<tr>
<td>32</td>
<td><code>0x20</code></td>
<td>&#31354;&#26684;</td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
</tr>
<tr>
<td>33 - 47</td>
<td><code>0x21-0x2F</code></td>
<td><code>!&quot;#$%&amp;&#39;()*+,-./</code></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
</tr>
<tr>
<td>48 - 57</td>
<td><code>0x30-0x39</code></td>
<td><code>0123456789</code></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
</tr>
<tr>
<td>58 - 64</td>
<td><code>0x3a-0x40</code></td>
<td><code>:;&lt;=&gt;?@</code></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
</tr>
<tr>
<td>65 - 70</td>
<td><code>0x41-0x46</code></td>
<td><code>ABCDEF</code></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
</tr>
<tr>
<td>71 - 90</td>
<td><code>0x47-0x5A</code></td>
<td><code>GHIJKLMNOPQRSTUVWXYZ</code></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
</tr>
<tr>
<td>91 - 96</td>
<td><code>0x5B-0x60</code></td>
<td><code>[\]^_`</code></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
</tr>
<tr>
<td>97 -102</td>
<td><code>0x61-0x66</code></td>
<td><code>abcdef</code></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
</tr>
<tr>
<td>103-122</td>
<td><code>0x67-0x7A</code></td>
<td><code>ghijklmnopqrstuvwxyz</code></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
</tr>
<tr>
<td>123-126</td>
<td><code>0x7B-0x7E</code></td>
<td><code>{|}~</code></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
</tr>
<tr>
<td>127</td>
<td><code>0x7F</code></td>
<td>&#36864;&#26684;&#31526; (<code>DEL</code>)</td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
</tr>
</table>
</div>
</div>
<div class="visualClear"></div>
</div>
</div>
</div>
</body>
</html>