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

434 lines
34 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>iswprint</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_iswprint skin-cppreference2 action-view cpp-navbar">
<div id="cpp-content-base">
<div id="content"><a id="top"></a>
<h1 id="firstHeading" class="firstHeading">iswprint</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> iswprint<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;&#26159;&#21542;&#33021;&#34987;&#25171;&#21360;&#65292;&#21363;&#23427;&#26159;&#25968;&#23383;&#65288; <code>0123456789</code> &#65289;&#12289;&#22823;&#20889;&#23383;&#27597;&#65288; <code>ABCDEFGHIJKLMNOPQRSTUVWXYZ</code> &#65289;&#12289;&#23567;&#20889;&#23383;&#27597;&#65288; <code>abcdefghijklmnopqrstuvwxyz</code> &#65289;&#12289;&#26631;&#28857;&#23383;&#31526;&#65288; <code>!&quot;#$%&amp;&#39;()*+,-./:;&lt;=&gt;?@[\]^_`{|}~</code> &#65289;&#12289;&#31354;&#26684;&#25110;&#20219;&#20309;&#38480;&#23450;&#20110;&#24403;&#21069; C &#26412;&#22320;&#29615;&#22659;&#25351;&#23450;&#30340;&#21487;&#25171;&#21360;&#23383;&#31526;&#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;&#33021;&#34987;&#25171;&#21360;&#21017;&#20026;&#38750;&#38646;&#65292;&#21542;&#21017;&#20026;&#38646;&#12290;</p>
<h3><span class="mw-headline" id=".E6.B3.A8.E6.84.8F">&#27880;&#24847;</span></h3>
<p><a rel="nofollow" class="external text" href="http://www.open-std.org/JTC1/SC35/WG5/docs/30112d10.pdf">ISO 30112</a> &#25351;&#23450;&#21738;&#20123; Unicode &#23383;&#31526;&#21253;&#21547;&#20110; POSIX &#25171;&#21360;&#31867;&#21035;&#12290;</p>
<h3><span class="mw-headline" id=".E7.A4.BA.E4.BE.8B">&#31034;&#20363;</span></h3>
<div class="t-example">
<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;wchar.h&gt;</span>
<span class="co2">#include &lt;wctype.h&gt;</span>
<span class="co2">#include &lt;locale.h&gt;</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> c <span class="sy1">=</span> L<span class="st0">&#39;<span class="es3">\u2002</span>&#39;</span><span class="sy4">;</span> <span class="co1">// Unicode &#23383;&#31526; &#39;EN SPACE&#39;</span>
<a href="c-io-fprintf.html"><span class="kw850">printf</span></a><span class="br0">(</span><span class="st0">&quot;in the default locale, iswprint(%#x) = %d<span class="es1">\n</span>&quot;</span>, c, <span class="sy3">!!</span>iswprint<span class="br0">(</span>c<span class="br0">)</span><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;en_US.utf8&quot;</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;in Unicode locale, iswprint(%#x) = %d<span class="es1">\n</span>&quot;</span>, c, <span class="sy3">!!</span>iswprint<span class="br0">(</span>c<span class="br0">)</span><span class="br0">)</span><span class="sy4">;</span>
<span class="kw4">wchar_t</span> c2 <span class="sy1">=</span> L<span class="st0">&#39;<span class="es2">\x82</span>&#39;</span><span class="sy4">;</span> <span class="co1">// &#23481;&#35768;&#30340;&#25171;&#26029;</span>
<a href="c-io-fprintf.html"><span class="kw850">printf</span></a><span class="br0">(</span><span class="st0">&quot;in Unicode locale, iswprint(%#x) = %d<span class="es1">\n</span>&quot;</span>, c2, <span class="sy3">!!</span>iswprint<span class="br0">(</span>c2<span class="br0">)</span><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 the default locale, iswprint(0x2002) = 0
in Unicode locale, iswprint(0x2002) = 1
in Unicode locale, iswprint(0x82) = 0</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.8 The iswprint function (p: 450)</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.8 The iswprint function (p: 396)</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-isprint.html"><span class="t-lines"><span>isprint</span></span></a></div>
</div>
</td>
<td>&#26816;&#26597;&#19968;&#20010;&#23383;&#31526;&#26159;&#21542;&#26159;&#21487;&#25171;&#21360;&#23383;&#31526;<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 />
<strong class="selflink"><tt>iswprint</tt></strong></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 />
<a href="c-string-wide-iswdigit.html"><tt>iswdigit</tt></a></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>