1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016
|
<!DOCTYPE html>
<html lang="en" dir="ltr" class="client-nojs">
<head>
<title>ASCII Chart - cppreference.com</title>
<meta charset="UTF-8" />
<meta name="generator" content="MediaWiki 1.21.2" />
<link rel="alternate" type="application/x-wiki" title="Edit" href="http://en.cppreference.com/mwiki/index.php?title=cpp/language/ascii&action=edit" />
<link rel="edit" title="Edit" href="http://en.cppreference.com/mwiki/index.php?title=cpp/language/ascii&action=edit" />
<link rel="shortcut icon" href="../../../favicon.ico" />
<link rel="search" type="application/opensearchdescription+xml" href="../../../mwiki/opensearch_desc.php" title="cppreference.com (en)" />
<link rel="EditURI" type="application/rsd+xml" href="http://en.cppreference.com/mwiki/api.php?action=rsd" />
<link rel="alternate" type="application/atom+xml" title="cppreference.com Atom feed" href="http://en.cppreference.com/mwiki/index.php?title=Special:RecentChanges&feed=atom" />
<link rel="stylesheet" href="../../../mwiki/load.php%3Fdebug=false&lang=en&modules=ext.gadget.ColiruCompiler%257Cext.rtlcite%257Cmediawiki.legacy.commonPrint%252Cshared%257Cskins.cppreference2&only=styles&skin=cppreference2&*.css" />
<meta name="ResourceLoaderDynamicStyles" content="" />
<link rel="stylesheet" href="../../../mwiki/load.php%3Fdebug=false&lang=en&modules=site&only=styles&skin=cppreference2&*.css" />
<style>a:lang(ar),a:lang(ckb),a:lang(fa),a:lang(kk-arab),a:lang(mzn),a:lang(ps),a:lang(ur){text-decoration:none}#toc{display:none}.editsection{display:none}
/* cache key: mwiki1-mwiki_en_:resourceloader:filter:minify-css:7:472787eddcf4605d11de8c7ef047234f */</style>
<script src="../../../mwiki/load.php%3Fdebug=false&lang=en&modules=startup&only=scripts&skin=cppreference2&*"></script>
<script>if(window.mw){
mw.config.set({"wgCanonicalNamespace":"","wgCanonicalSpecialPageName":false,"wgNamespaceNumber":0,"wgPageName":"cpp/language/ascii","wgTitle":"cpp/language/ascii","wgCurRevisionId":75636,"wgArticleId":687,"wgIsArticle":true,"wgAction":"view","wgUserName":null,"wgUserGroups":["*"],"wgCategories":[],"wgBreakFrames":false,"wgPageContentLanguage":"en","wgSeparatorTransformTable":["",""],"wgDigitTransformTable":["",""],"wgDefaultDateFormat":"dmy","wgMonthNames":["","January","February","March","April","May","June","July","August","September","October","November","December"],"wgMonthNamesShort":["","Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"wgRelevantPageName":"cpp/language/ascii","wgRestrictionEdit":[],"wgRestrictionMove":[]});
}</script><script>if(window.mw){
mw.loader.implement("user.options",function(){mw.user.options.set({"ccmeonemails":0,"cols":80,"date":"default","diffonly":0,"disablemail":0,"disablesuggest":0,"editfont":"default","editondblclick":0,"editsection":0,"editsectiononrightclick":0,"enotifminoredits":0,"enotifrevealaddr":0,"enotifusertalkpages":1,"enotifwatchlistpages":0,"extendwatchlist":0,"externaldiff":0,"externaleditor":0,"fancysig":0,"forceeditsummary":0,"gender":"unknown","hideminor":0,"hidepatrolled":0,"imagesize":2,"justify":0,"math":1,"minordefault":0,"newpageshidepatrolled":0,"nocache":0,"noconvertlink":0,"norollbackdiff":0,"numberheadings":0,"previewonfirst":0,"previewontop":1,"quickbar":5,"rcdays":7,"rclimit":50,"rememberpassword":0,"rows":25,"searchlimit":20,"showhiddencats":0,"showjumplinks":1,"shownumberswatching":1,"showtoc":0,"showtoolbar":1,"skin":"cppreference2","stubthreshold":0,"thumbsize":2,"underline":2,"uselivepreview":0,"usenewrc":0,"watchcreations":0,"watchdefault":0,"watchdeletion":0,
"watchlistdays":3,"watchlisthideanons":0,"watchlisthidebots":0,"watchlisthideliu":0,"watchlisthideminor":0,"watchlisthideown":0,"watchlisthidepatrolled":0,"watchmoves":0,"wllimit":250,"variant":"en","language":"en","searchNs0":true,"searchNs1":false,"searchNs2":false,"searchNs3":false,"searchNs4":false,"searchNs5":false,"searchNs6":false,"searchNs7":false,"searchNs8":false,"searchNs9":false,"searchNs10":false,"searchNs11":false,"searchNs12":false,"searchNs13":false,"searchNs14":false,"searchNs15":false,"gadget-ColiruCompiler":1});;},{},{});mw.loader.implement("user.tokens",function(){mw.user.tokens.set({"editToken":"+\\","patrolToken":false,"watchToken":false});;},{},{});
/* cache key: mwiki1-mwiki_en_:resourceloader:filter:minify-js:7:ca03345b1e2c4d90a25d968753a73b92 */
}</script>
<script>if(window.mw){
mw.loader.load(["mediawiki.page.startup","mediawiki.legacy.wikibits","mediawiki.legacy.ajax"]);
}</script>
<!--[if lt IE 7]><style type="text/css">body{behavior:url("/mwiki/skins/cppreference2/csshover.min.htc")}</style><![endif]--></head>
<body class="mediawiki ltr sitedir-ltr ns-0 ns-subject page-cpp_language_ascii skin-cppreference2 action-view cpp-navbar">
<!-- header -->
<div id="mw-head" class="noprint">
<div id="cpp-head-first-base">
<div id="cpp-head-first">
<h5><a href="../../../index.html">
cppreference.com </a></h5>
<div id="cpp-head-search">
<!-- 0 -->
<div id="p-search">
<h5><label for="searchInput">Search</label></h5>
<form action="http://en.cppreference.com/mwiki/index.php" id="searchform">
<input type='hidden' name="title" value="Special:Search"/>
<div id="simpleSearch">
<input name="search" title="Search cppreference.com [f]" accesskey="f" id="searchInput" /> <button type="submit" name="button" title="Search the pages for this text" id="searchButton"><img src="../../../mwiki/skins/cppreference2/images/search-ltr.png%3F303" alt="Search" /></button> </div>
</form>
</div>
<!-- /0 -->
</div>
<div id="cpp-head-personal">
<!-- 0 -->
<div id="p-personal" class="">
<span id="pt-createaccount"><a href="http://en.cppreference.com/mwiki/index.php?title=Special:UserLogin&returnto=cpp%2Flanguage%2Fascii&type=signup">Create account</a></span> <div class="menu">
<ul>
<li id="pt-login"><a href="http://en.cppreference.com/mwiki/index.php?title=Special:UserLogin&returnto=cpp%2Flanguage%2Fascii" title="You are encouraged to log in; however, it is not mandatory [o]" accesskey="o">Log in</a></li> </ul>
</div>
</div>
<!-- /0 -->
</div>
</div>
</div>
<div id="cpp-head-second-base">
<div id="cpp-head-second">
<div id="cpp-head-tools-left">
<!-- 0 -->
<div id="p-namespaces" class="vectorTabs">
<h5>Namespaces</h5>
<ul>
<li id="ca-nstab-main" class="selected"><span><a href="ascii.html" title="View the content page [c]" accesskey="c">Page</a></span></li>
<li id="ca-talk" class="new"><span><a href="http://en.cppreference.com/mwiki/index.php?title=Talk:cpp/language/ascii&action=edit&redlink=1" title="Discussion about the content page [t]" accesskey="t">Discussion</a></span></li>
</ul>
</div>
<!-- /0 -->
<!-- 1 -->
<div id="p-variants" class="vectorMenu emptyPortlet">
<h5><span>Variants</span><a href="ascii.html#"></a></h5>
<div class="menu">
<ul>
</ul>
</div>
</div>
<!-- /1 -->
</div>
<div id="cpp-head-tools-right">
<!-- 0 -->
<div id="p-views" class="vectorTabs">
<h5>Views</h5>
<ul>
<li id="ca-view" class="selected"><span><a href="ascii.html" >View</a></span></li>
<li id="ca-edit"><span><a href="http://en.cppreference.com/mwiki/index.php?title=cpp/language/ascii&action=edit" title="You can edit this page. Please use the preview button before saving [e]" accesskey="e">Edit</a></span></li>
<li id="ca-history" class="collapsible"><span><a href="http://en.cppreference.com/mwiki/index.php?title=cpp/language/ascii&action=history" title="Past revisions of this page [h]" accesskey="h">History</a></span></li>
</ul>
</div>
<!-- /0 -->
<!-- 1 -->
<div id="p-cactions" class="vectorMenu emptyPortlet">
<h5><span>Actions</span><a href="ascii.html#"></a></h5>
<div class="menu">
<ul>
</ul>
</div>
</div>
<!-- /1 -->
</div>
</div>
</div>
</div>
<!-- /header -->
<!-- content -->
<div id="cpp-content-base">
<div id="content">
<a id="top"></a>
<div id="mw-js-message" style="display:none;"></div>
<!-- firstHeading -->
<h1 id="firstHeading" class="firstHeading">ASCII Chart</h1>
<!-- /firstHeading -->
<!-- bodyContent -->
<div id="bodyContent">
<!-- tagline -->
<div id="siteSub">From cppreference.com</div>
<!-- /tagline -->
<!-- subtitle -->
<div id="contentSub"><span class="subpages">< <a href="../../cpp.html" title="cpp">cpp</a>‎ | <a href="../language.1.html" title="cpp/language">language</a></span></div>
<!-- /subtitle -->
<!-- bodycontent -->
<div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr"><div class="t-navbar" style=""><div class="t-navbar-sep"> </div><div class="t-navbar-head"><a href="../../cpp.html" title="cpp"> C++</a><div class="t-navbar-menu"><div><div><table class="t-nv-begin" cellpadding="0" style="line-height:1.1em;">
<tr class="t-nv"><td colspan="5"> <a href="../language.1.html" title="cpp/language"> Language</a> </td></tr>
<tr class="t-nv"><td colspan="5"> <a href="../header.html" title="cpp/header"> Standard library headers</a> </td></tr>
<tr class="t-nv"><td colspan="5"> <a href="../concept.html" title="cpp/concept"> Concepts</a> </td></tr>
<tr class="t-nv"><td colspan="5"> <a href="../utility.html" title="cpp/utility"> Utilities library</a> </td></tr>
<tr class="t-nv"><td colspan="5"> <a href="../string.html" title="cpp/string"> Strings library</a> </td></tr>
<tr class="t-nv"><td colspan="5"> <a href="../container.html" title="cpp/container"> Containers library</a> </td></tr>
<tr class="t-nv"><td colspan="5"> <a href="../algorithm.html" title="cpp/algorithm"> Algorithms library</a> </td></tr>
<tr class="t-nv"><td colspan="5"> <a href="../iterator.html" title="cpp/iterator"> Iterators library</a> </td></tr>
<tr class="t-nv"><td colspan="5"> <a href="../numeric.html" title="cpp/numeric"> Numerics library</a> </td></tr>
<tr class="t-nv"><td colspan="5"> <a href="../io.html" title="cpp/io"> Input/output library</a> </td></tr>
<tr class="t-nv"><td colspan="5"> <a href="../locale.html" title="cpp/locale"> Localizations library</a> </td></tr>
<tr class="t-nv"><td colspan="5"> <a href="../regex.html" title="cpp/regex"> Regular expressions library</a> <span class="t-mark-rev t-since-cxx11">(C++11)</span> </td></tr>
<tr class="t-nv"><td colspan="5"> <a href="../atomic.html" title="cpp/atomic"> Atomic operations library</a> <span class="t-mark-rev t-since-cxx11">(C++11)</span> </td></tr>
<tr class="t-nv"><td colspan="5"> <a href="../thread.html" title="cpp/thread"> Thread support library</a> <span class="t-mark-rev t-since-cxx11">(C++11)</span> </td></tr>
<tr class="t-nv"><td colspan="5"> <a href="../experimental.html" title="cpp/experimental"> Technical Specifications</a> </td></tr>
</table></div><div><span class="editsection noprint plainlinks" title="Edit this template"><a rel="nofollow" class="external text" href="http://en.cppreference.com/mwiki/index.php?title=Template:cpp/navbar_content&action=edit">[edit]</a></span></div></div></div></div><div class="t-navbar-sep"> </div><div class="t-navbar-head"><a href="../language.1.html" title="cpp/language"> C++ language</a><div class="t-navbar-menu"><div><div style="display:inline-block">
<div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv-h1"><td colspan="5"> General topics</td></tr>
<tr class="t-nv-col-table"><td><div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv"><td colspan="5"> <a href="../preprocessor.html" title="cpp/preprocessor"> Preprocessor</a></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="../comments.html" title="cpp/comment"> Comments</a></td></tr>
</table></div></td><td><div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv"><td colspan="5"> <a href="../keywords.html" title="cpp/keyword"> Keywords</a></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="escape.html" title="cpp/language/escape"> Escape sequences</a></td></tr>
</table></div></td></tr>
<tr class="t-nv-h1"><td colspan="5"> Flow control</td></tr>
<tr class="t-nv-h2"><td colspan="5"> Conditional execution statements</td></tr>
<tr class="t-nv-col-table"><td><div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv"><td colspan="5"> <a href="if.html" title="cpp/language/if"> <code>if</code></a></td></tr>
</table></div></td><td><div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv"><td colspan="5"> <a href="switch.html" title="cpp/language/switch"> <code>switch</code></a></td></tr>
</table></div></td></tr>
<tr class="t-nv-h2"><td colspan="5"> Iteration statements (loops)</td></tr>
<tr class="t-nv-col-table"><td><div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv"><td colspan="5"> <a href="for.html" title="cpp/language/for"> <code>for</code></a></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="range-for.html" title="cpp/language/range-for"> range-<code>for</code></a> <span class="t-mark-rev t-since-cxx11">(C++11)</span></td></tr>
</table></div></td><td><div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv"><td colspan="5"> <a href="while.html" title="cpp/language/while"> <code>while</code></a></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="do.html" title="cpp/language/do"> <code>do-while</code></a></td></tr>
</table></div></td></tr>
<tr class="t-nv-h2"><td colspan="5"> Jump statements </td></tr>
<tr class="t-nv-col-table"><td><div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv"><td colspan="5"> <a href="continue.html" title="cpp/language/continue"> <code>continue</code></a> - <a href="break.html" title="cpp/language/break"> <code>break</code></a></td></tr>
</table></div></td><td><div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv"><td colspan="5"> <a href="goto.html" title="cpp/language/goto"> <code>goto</code></a> - <a href="return.html" title="cpp/language/return"> <code>return</code></a></td></tr>
</table></div></td></tr>
<tr class="t-nv-h1"><td colspan="5"> Functions</td></tr>
<tr class="t-nv"><td colspan="5"> <a href="function.html" title="cpp/language/function"> Function declaration</a></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="lambda.html" title="cpp/language/lambda"> Lambda function declaration</a></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="inline.html" title="cpp/language/inline"> <code>inline</code> specifier</a></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="except_spec.html" title="cpp/language/except spec"> Exception specifications</a> <span class="t-mark">(deprecated)</span></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="noexcept_spec.html" title="cpp/language/noexcept spec"> <code>noexcept</code> specifier</a> <span class="t-mark-rev t-since-cxx11">(C++11)</span></td></tr>
<tr class="t-nv-h1"><td colspan="5"> Exceptions</td></tr>
<tr class="t-nv-col-table"><td><div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv"><td colspan="5"> <a href="throw.html" title="cpp/language/throw"> <code>throw</code>-expression</a></td></tr>
</table></div></td><td><div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv"><td colspan="5"> <a href="try_catch.html" title="cpp/language/try catch"> <code>try</code>-<code>catch</code> block</a></td></tr>
</table></div></td></tr>
<tr class="t-nv-h1"><td colspan="5"> Namespaces</td></tr>
<tr class="t-nv-col-table"><td><div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv"><td colspan="5"> <a href="namespace.html" title="cpp/language/namespace"> Namespace declaration</a></td></tr>
</table></div></td><td><div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv"><td colspan="5"> <a href="namespace_alias.html" title="cpp/language/namespace alias"> Namespace aliases</a></td></tr>
</table></div></td></tr>
<tr class="t-nv-h1"><td colspan="5"> Types</td></tr>
<tr class="t-nv-col-table"><td><div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv"><td colspan="5"> <a href="types.html" title="cpp/language/types"> Fundamental types</a></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="enum.html" title="cpp/language/enum"> Enumeration types</a></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="function.html" title="cpp/language/function"> Function types</a></td></tr>
</table></div></td><td><div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv"><td colspan="5"> <a href="class.html" title="cpp/language/class"> Compound types</a></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="union.html" title="cpp/language/union"> Union types</a></td></tr>
</table></div></td></tr>
<tr class="t-nv-h2"><td colspan="5"> Specifiers</td></tr>
<tr class="t-nv-col-table"><td><div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv"><td colspan="5"> <a href="decltype.html" title="cpp/language/decltype"> <code>decltype</code></a> <span class="t-mark-rev t-since-cxx11">(C++11)</span></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="auto.html" title="cpp/language/auto"> <code>auto</code></a> <span class="t-mark-rev t-since-cxx11">(C++11)</span></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="alignas.html" title="cpp/language/alignas"> <code>alignas</code></a> <span class="t-mark-rev t-since-cxx11">(C++11)</span></td></tr>
</table></div></td><td><div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv"><td colspan="5"> <a href="cv.html" title="cpp/language/cv"> <code>const</code>/<code>volatile</code></a></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="constexpr.html" title="cpp/language/constexpr"> <code>constexpr</code></a> <span class="t-mark-rev t-since-cxx11">(C++11)</span></td></tr>
</table></div></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="storage_duration.html" title="cpp/language/storage duration"> Storage duration specifiers</a></td></tr>
<tr class="t-nv-h2"><td colspan="5"> Initialization</td></tr>
<tr class="t-nv-col-table"><td><div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv"><td colspan="5"> <a href="default_initialization.html" title="cpp/language/default initialization"> Default initialization</a></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="value_initialization.html" title="cpp/language/value initialization"> Value initialization</a></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="zero_initialization.html" title="cpp/language/zero initialization"> Zero initialization</a></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="copy_initialization.html" title="cpp/language/copy initialization"> Copy initialization</a></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="direct_initialization.html" title="cpp/language/direct initialization"> Direct initialization</a></td></tr>
</table></div></td><td><div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv"><td colspan="5"> <a href="aggregate_initialization.html" title="cpp/language/aggregate initialization"> Aggregate initialization</a></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="list_initialization.html" title="cpp/language/list initialization"> List initialization</a> <span class="t-mark-rev t-since-cxx11">(C++11)</span></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="constant_initialization.html" title="cpp/language/constant initialization"> Constant initialization</a></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="reference_initialization.html" title="cpp/language/reference initialization"> Reference initialization</a></td></tr>
</table></div></td></tr>
</table></div>
</div>
<div style="display:inline-block">
<div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv-h1"><td colspan="5"> Expressions</td></tr>
<tr class="t-nv-col-table"><td><div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv"><td colspan="5"> <a href="value_category.html" title="cpp/language/value category"> Value categories</a></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="eval_order.html" title="cpp/language/eval order"> Order of evaluation</a></td></tr>
</table></div></td><td><div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv"><td colspan="5"> <a href="operators.html" title="cpp/language/operators"> Operators</a></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="operator_precedence.html" title="cpp/language/operator precedence"> Operator precedence</a></td></tr>
</table></div></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="operator_alternative.html" title="cpp/language/operator alternative"> Alternative representations</a></td></tr>
<tr class="t-nv-h2"><td colspan="5"> Literals</td></tr>
<tr class="t-nv"><td colspan="5"> <a href="bool_literal.html" title="cpp/language/bool literal"> Boolean</a> - <a href="integer_literal.html" title="cpp/language/integer literal"> Integer</a> - <a href="floating_literal.html" title="cpp/language/floating literal"> Floating-point</a></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="character_literal.html" title="cpp/language/character literal"> Character</a> - <a href="string_literal.html" title="cpp/language/string literal"> String</a> - <a href="nullptr.html" title="cpp/language/nullptr"> <code>nullptr</code></a> <span class="t-mark-rev t-since-cxx11">(C++11)</span></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="user_literal.html" title="cpp/language/user literal"> User-defined</a> <span class="t-mark-rev t-since-cxx11">(C++11)</span></td></tr>
<tr class="t-nv-h1"><td colspan="5"> Utilities</td></tr>
<tr class="t-nv"><td colspan="5"> <a href="attributes.html" title="cpp/language/attributes"> Attributes</a> <span class="t-mark-rev t-since-cxx11">(C++11)</span></td></tr>
<tr class="t-nv-h2"><td colspan="5"> Types</td></tr>
<tr class="t-nv"><td colspan="5"> <a href="typedef.html" title="cpp/language/typedef"> <code>typedef</code> declaration</a></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="type_alias.html" title="cpp/language/type alias"> Type alias declaration</a> <span class="t-mark-rev t-since-cxx11">(C++11)</span></td></tr>
<tr class="t-nv-h2"><td colspan="5"> Casts</td></tr>
<tr class="t-nv"><td colspan="5"> <a href="implicit_cast.html" title="cpp/language/implicit cast"> Implicit conversions</a> - <a href="explicit_cast.html" title="cpp/language/explicit cast"> Explicit conversions</a></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="static_cast.html" title="cpp/language/static cast"> <code>static_cast</code></a> - <a href="dynamic_cast.html" title="cpp/language/dynamic cast"> <code>dynamic_cast</code></a></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="const_cast.html" title="cpp/language/const cast"> <code>const_cast</code></a> - <a href="reinterpret_cast.html" title="cpp/language/reinterpret cast"> <code>reinterpret_cast</code></a></td></tr>
<tr class="t-nv-h2"><td colspan="5"> Memory allocation</td></tr>
<tr class="t-nv-col-table"><td><div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv"><td colspan="5"> <a href="new.html" title="cpp/language/new"> <code>new</code> expression</a></td></tr>
</table></div></td><td><div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv"><td colspan="5"> <a href="delete.html" title="cpp/language/delete"> <code>delete</code> expression</a></td></tr>
</table></div></td></tr>
<tr class="t-nv-h1"><td colspan="5"> Classes</td></tr>
<tr class="t-nv-col-table"><td><div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv"><td colspan="5"> <a href="class.html" title="cpp/language/class"> Class declaration</a></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="constructor.html" title="cpp/language/initializer list"> Initializer lists</a> </td></tr>
<tr class="t-nv"><td colspan="5"> <a href="this.html" title="cpp/language/this"> <code>this</code> pointer</a></td></tr>
</table></div></td><td><div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv"><td colspan="5"> <a href="access.html" title="cpp/language/access"> Access specifiers</a></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="friend.html" title="cpp/language/friend"> <code>friend</code> specifier</a></td></tr>
</table></div></td></tr>
<tr class="t-nv-h2"><td colspan="5"> Class-specific function properties</td></tr>
<tr class="t-nv-col-table"><td><div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv"><td colspan="5"> <a href="virtual.html" title="cpp/language/virtual"> Virtual function</a> </td></tr>
<tr class="t-nv"><td colspan="5"> <a href="override.html" title="cpp/language/override"> override specifier</a> <span class="t-mark-rev t-since-cxx11">(C++11)</span></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="final.html" title="cpp/language/final"> final specifier</a> <span class="t-mark-rev t-since-cxx11">(C++11)</span></td></tr>
</table></div></td><td><div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv"><td colspan="5"> <a href="explicit.html" title="cpp/language/explicit"> <code>explicit</code></a> <span class="t-mark-rev t-since-cxx11">(C++11)</span></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="static.html" title="cpp/language/static"> <code>static</code></a> </td></tr>
</table></div></td></tr>
<tr class="t-nv-h2"><td colspan="5"> Special member functions</td></tr>
<tr class="t-nv-col-table"><td><div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv"><td colspan="5"> <a href="default_constructor.html" title="cpp/language/default constructor"> Default constructor</a></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="copy_constructor.html" title="cpp/language/copy constructor"> Copy constructor</a></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="move_constructor.html" title="cpp/language/move constructor"> Move constructor</a> <span class="t-mark-rev t-since-cxx11">(C++11)</span></td></tr>
</table></div></td><td><div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv"><td colspan="5"> <a href="as_operator.html" title="cpp/language/as operator" class="mw-redirect"> Copy assignment</a></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="move_operator.html" title="cpp/language/move operator" class="mw-redirect"> Move assignment</a> <span class="t-mark-rev t-since-cxx11">(C++11)</span></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="destructor.html" title="cpp/language/destructor"> Destructor</a></td></tr>
</table></div></td></tr>
<tr class="t-nv-h1"><td colspan="5">Templates </td></tr>
<tr class="t-nv-col-table"><td><div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv"><td colspan="5"> <a href="class_template.html" title="cpp/language/class template"> Class template </a></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="function_template.html" title="cpp/language/function template"> Function template </a></td></tr>
</table></div></td><td><div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv"><td colspan="5"> <a href="template_specialization.html" title="cpp/language/template specialization"> Template specialization</a></td></tr>
<tr class="t-nv"><td colspan="5"> <a href="parameter_pack.html" title="cpp/language/parameter pack"> Parameter packs</a> <span class="t-mark-rev t-since-cxx11">(C++11)</span></td></tr>
</table></div></td></tr>
<tr class="t-nv-h1"><td colspan="5"> Miscellaneous </td></tr>
<tr class="t-nv-col-table"><td><div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv"><td colspan="5"> <a href="asm.html" title="cpp/language/asm"> Inline assembly</a></td></tr>
</table></div></td><td><div><table class="t-nv-begin" cellpadding="0" style="">
<tr class="t-nv"><td colspan="5"> <a href="history.html" title="cpp/language/history"> History of C++</a></td></tr>
</table></div></td></tr>
</table></div>
</div><div><span class="editsection noprint plainlinks" title="Edit this template"><a rel="nofollow" class="external text" href="http://en.cppreference.com/mwiki/index.php?title=Template:cpp/language/navbar_content&action=edit">[edit]</a></span></div></div></div></div><div class="t-navbar-sep"> </div></div>
<p>The following chart contains all 128 ASCII decimal <b>(dec)</b>, octal <b>(oct)</b>, hexadecimal <b>(hex)</b> and character <b>(ch)</b> codes.
</p>
<table class="wikitable" style="text-align: left;">
<tr>
<th> <code>dec</code> </th>
<th> <code>oct</code> </th>
<th> <code>hex</code>
</th>
<th style="text-align: left;"> <code>ch</code>
</th>
<td rowspan="33">
</td>
<th> <code>dec</code> </th>
<th> <code>oct</code> </th>
<th> <code>hex</code>
</th>
<th style="text-align: left;"> <code>ch</code>
</th>
<td rowspan="33">
</td>
<th> <code>dec</code> </th>
<th> <code>oct</code> </th>
<th> <code>hex</code>
</th>
<th style="text-align: left;"> <code>ch</code>
</th>
<td rowspan="33">
</td>
<th> <code>dec</code> </th>
<th> <code>oct</code> </th>
<th> <code>hex</code>
</th>
<th style="text-align: left;"> <code>ch</code>
</th></tr>
<tr>
<td> <code> 0</code></td>
<td> <code>0</code></td>
<td><code>00</code></td>
<td><code><b>NUL</b></code> (null) </td>
<td> <code>32</code></td>
<td><code>40</code></td>
<td><code>20</code></td>
<td>(space) </td>
<td> <code>64</code></td>
<td><code>100</code></td>
<td><code>40</code></td>
<td><code><b>@</b></code> </td>
<td> <code> 96</code></td>
<td><code>140</code></td>
<td><code>60</code></td>
<td><code><b>`</b></code>
</td></tr>
<tr>
<td> <code> 1</code></td>
<td> <code>1</code></td>
<td><code>01</code></td>
<td><code><b>SOH</b></code> (start of header) </td>
<td> <code>33</code></td>
<td><code>41</code></td>
<td><code>21</code></td>
<td><code><b>!</b></code> </td>
<td> <code>65</code></td>
<td><code>101</code></td>
<td><code>41</code></td>
<td><code><b>A</b></code> </td>
<td> <code> 97</code></td>
<td><code>141</code></td>
<td><code>61</code></td>
<td><code><b>a</b></code>
</td></tr>
<tr>
<td> <code> 2</code></td>
<td> <code>2</code></td>
<td><code>02</code></td>
<td><code><b>STX</b></code> (start of text) </td>
<td> <code>34</code></td>
<td><code>42</code></td>
<td><code>22</code></td>
<td><code><b>"</b></code> </td>
<td> <code>66</code></td>
<td><code>102</code></td>
<td><code>42</code></td>
<td><code><b>B</b></code> </td>
<td> <code> 98</code></td>
<td><code>142</code></td>
<td><code>62</code></td>
<td><code><b>b</b></code>
</td></tr>
<tr>
<td> <code> 3</code></td>
<td> <code>3</code></td>
<td><code>03</code></td>
<td><code><b>ETX</b></code> (end of text) </td>
<td> <code>35</code></td>
<td><code>43</code></td>
<td><code>23</code></td>
<td><code><b>#</b></code> </td>
<td> <code>67</code></td>
<td><code>103</code></td>
<td><code>43</code></td>
<td><code><b>C</b></code> </td>
<td> <code> 99</code></td>
<td><code>143</code></td>
<td><code>63</code></td>
<td><code><b>c</b></code>
</td></tr>
<tr>
<td> <code> 4</code></td>
<td> <code>4</code></td>
<td><code>04</code></td>
<td><code><b>EOT</b></code> (end of transmission) </td>
<td> <code>36</code></td>
<td><code>44</code></td>
<td><code>24</code></td>
<td><code><b>$</b></code> </td>
<td> <code>68</code></td>
<td><code>104</code></td>
<td><code>44</code></td>
<td><code><b>D</b></code> </td>
<td> <code>100</code></td>
<td><code>144</code></td>
<td><code>64</code></td>
<td><code><b>d</b></code>
</td></tr>
<tr>
<td> <code> 5</code></td>
<td> <code>5</code></td>
<td><code>05</code></td>
<td><code><b>ENQ</b></code> (enquiry) </td>
<td> <code>37</code></td>
<td><code>45</code></td>
<td><code>25</code></td>
<td><code><b>%</b></code> </td>
<td> <code>69</code></td>
<td><code>105</code></td>
<td><code>45</code></td>
<td><code><b>E</b></code> </td>
<td> <code>101</code></td>
<td><code>145</code></td>
<td><code>65</code></td>
<td><code><b>e</b></code>
</td></tr>
<tr>
<td> <code> 6</code></td>
<td> <code>6</code></td>
<td><code>06</code></td>
<td><code><b>ACK</b></code> (acknowledge) </td>
<td> <code>38</code></td>
<td><code>46</code></td>
<td><code>26</code></td>
<td><code><b>&</b></code> </td>
<td> <code>70</code></td>
<td><code>106</code></td>
<td><code>46</code></td>
<td><code><b>F</b></code> </td>
<td> <code>102</code></td>
<td><code>146</code></td>
<td><code>66</code></td>
<td><code><b>f</b></code>
</td></tr>
<tr>
<td> <code> 7</code></td>
<td> <code>7</code></td>
<td><code>07</code></td>
<td><code><b>BEL</b></code> (bell) </td>
<td> <code>39</code></td>
<td><code>47</code></td>
<td><code>27</code></td>
<td><code><b>'</b></code> </td>
<td> <code>71</code></td>
<td><code>107</code></td>
<td><code>47</code></td>
<td><code><b>G</b></code> </td>
<td> <code>103</code></td>
<td><code>147</code></td>
<td><code>67</code></td>
<td><code><b>g</b></code>
</td></tr>
<tr>
<td> <code> 8</code></td>
<td><code>10</code></td>
<td><code>08</code></td>
<td><code><b>BS</b></code> (backspace) </td>
<td> <code>40</code></td>
<td><code>50</code></td>
<td><code>28</code></td>
<td><code><b>(</b></code> </td>
<td> <code>72</code></td>
<td><code>110</code></td>
<td><code>48</code></td>
<td><code><b>H</b></code> </td>
<td> <code>104</code></td>
<td><code>150</code></td>
<td><code>68</code></td>
<td><code><b>h</b></code>
</td></tr>
<tr>
<td> <code> 9</code></td>
<td><code>11</code></td>
<td><code>09</code></td>
<td><code><b>HT</b></code> (horizontal tab) </td>
<td> <code>41</code></td>
<td><code>51</code></td>
<td><code>29</code></td>
<td><code><b>)</b></code> </td>
<td> <code>73</code></td>
<td><code>111</code></td>
<td><code>49</code></td>
<td><code><b>I</b></code> </td>
<td> <code>105</code></td>
<td><code>151</code></td>
<td><code>69</code></td>
<td><code><b>i</b></code>
</td></tr>
<tr>
<td> <code>10</code></td>
<td><code>12</code></td>
<td><code>0a</code></td>
<td><code><b>LF</b></code> (line feed - new line) </td>
<td> <code>42</code></td>
<td><code>52</code></td>
<td><code>2a</code></td>
<td><code><b>*</b></code> </td>
<td> <code>74</code></td>
<td><code>112</code></td>
<td><code>4a</code></td>
<td><code><b>J</b></code> </td>
<td> <code>106</code></td>
<td><code>152</code></td>
<td><code>6a</code></td>
<td><code><b>j</b></code>
</td></tr>
<tr>
<td> <code>11</code></td>
<td><code>13</code></td>
<td><code>0b</code></td>
<td><code><b>VT</b></code> (vertical tab) </td>
<td> <code>43</code></td>
<td><code>53</code></td>
<td><code>2b</code></td>
<td><code><b>+</b></code> </td>
<td> <code>75</code></td>
<td><code>113</code></td>
<td><code>4b</code></td>
<td><code><b>K</b></code> </td>
<td> <code>107</code></td>
<td><code>153</code></td>
<td><code>6b</code></td>
<td><code><b>k</b></code>
</td></tr>
<tr>
<td> <code>12</code></td>
<td><code>14</code></td>
<td><code>0c</code></td>
<td><code><b>FF</b></code> (form feed - new page) </td>
<td> <code>44</code></td>
<td><code>54</code></td>
<td><code>2c</code></td>
<td><code><b>,</b></code> </td>
<td> <code>76</code></td>
<td><code>114</code></td>
<td><code>4c</code></td>
<td><code><b>L</b></code> </td>
<td> <code>108</code></td>
<td><code>154</code></td>
<td><code>6c</code></td>
<td><code><b>l</b></code>
</td></tr>
<tr>
<td> <code>13</code></td>
<td><code>15</code></td>
<td><code>0d</code></td>
<td><code><b>CR</b></code> (carriage return) </td>
<td> <code>45</code></td>
<td><code>55</code></td>
<td><code>2d</code></td>
<td><code><b>-</b></code> </td>
<td> <code>77</code></td>
<td><code>115</code></td>
<td><code>4d</code></td>
<td><code><b>M</b></code> </td>
<td> <code>109</code></td>
<td><code>155</code></td>
<td><code>6d</code></td>
<td><code><b>m</b></code>
</td></tr>
<tr>
<td> <code>14</code></td>
<td><code>16</code></td>
<td><code>0e</code></td>
<td><code><b>SO</b></code> (shift out) </td>
<td> <code>46</code></td>
<td><code>56</code></td>
<td><code>2e</code></td>
<td><code><b>.</b></code> </td>
<td> <code>78</code></td>
<td><code>116</code></td>
<td><code>4e</code></td>
<td><code><b>N</b></code> </td>
<td> <code>110</code></td>
<td><code>156</code></td>
<td><code>6e</code></td>
<td><code><b>n</b></code>
</td></tr>
<tr>
<td> <code>15</code></td>
<td><code>17</code></td>
<td><code>0f</code></td>
<td><code><b>SI</b></code> (shift in) </td>
<td> <code>47</code></td>
<td><code>57</code></td>
<td><code>2f</code></td>
<td><code><b>/</b></code> </td>
<td> <code>79</code></td>
<td><code>117</code></td>
<td><code>4f</code></td>
<td><code><b>O</b></code> </td>
<td> <code>111</code></td>
<td><code>157</code></td>
<td><code>6f</code></td>
<td><code><b>o</b></code>
</td></tr>
<tr>
<td> <code>16</code></td>
<td><code>20</code></td>
<td><code>10</code></td>
<td><code><b>DLE</b></code> (data link escape) </td>
<td> <code>48</code></td>
<td><code>60</code></td>
<td><code>30</code></td>
<td><code><b>0</b></code> </td>
<td> <code>80</code></td>
<td><code>120</code></td>
<td><code>50</code></td>
<td><code><b>P</b></code> </td>
<td> <code>112</code></td>
<td><code>160</code></td>
<td><code>70</code></td>
<td><code><b>p</b></code>
</td></tr>
<tr>
<td> <code>17</code></td>
<td><code>21</code></td>
<td><code>11</code></td>
<td><code><b>DC1</b></code> (device control 1) </td>
<td> <code>49</code></td>
<td><code>61</code></td>
<td><code>31</code></td>
<td><code><b>1</b></code> </td>
<td> <code>81</code></td>
<td><code>121</code></td>
<td><code>51</code></td>
<td><code><b>Q</b></code> </td>
<td> <code>113</code></td>
<td><code>161</code></td>
<td><code>71</code></td>
<td><code><b>q</b></code>
</td></tr>
<tr>
<td> <code>18</code></td>
<td><code>22</code></td>
<td><code>12</code></td>
<td><code><b>DC2</b></code> (device control 2) </td>
<td> <code>50</code></td>
<td><code>62</code></td>
<td><code>32</code></td>
<td><code><b>2</b></code> </td>
<td> <code>82</code></td>
<td><code>122</code></td>
<td><code>52</code></td>
<td><code><b>R</b></code> </td>
<td> <code>114</code></td>
<td><code>162</code></td>
<td><code>72</code></td>
<td><code><b>r</b></code>
</td></tr>
<tr>
<td> <code>19</code></td>
<td><code>23</code></td>
<td><code>13</code></td>
<td><code><b>DC3</b></code> (device control 3) </td>
<td> <code>51</code></td>
<td><code>63</code></td>
<td><code>33</code></td>
<td><code><b>3</b></code> </td>
<td> <code>83</code></td>
<td><code>123</code></td>
<td><code>53</code></td>
<td><code><b>S</b></code> </td>
<td> <code>115</code></td>
<td><code>163</code></td>
<td><code>73</code></td>
<td><code><b>s</b></code>
</td></tr>
<tr>
<td> <code>20</code></td>
<td><code>24</code></td>
<td><code>14</code></td>
<td><code><b>DC4</b></code> (device control 4) </td>
<td> <code>52</code></td>
<td><code>64</code></td>
<td><code>34</code></td>
<td><code><b>4</b></code> </td>
<td> <code>84</code></td>
<td><code>124</code></td>
<td><code>54</code></td>
<td><code><b>T</b></code> </td>
<td> <code>116</code></td>
<td><code>164</code></td>
<td><code>74</code></td>
<td><code><b>t</b></code>
</td></tr>
<tr>
<td> <code>21</code></td>
<td><code>25</code></td>
<td><code>15</code></td>
<td><code><b>NAK</b></code> (negative acknowledge) </td>
<td> <code>53</code></td>
<td><code>65</code></td>
<td><code>35</code></td>
<td><code><b>5</b></code> </td>
<td> <code>85</code></td>
<td><code>125</code></td>
<td><code>55</code></td>
<td><code><b>U</b></code> </td>
<td> <code>117</code></td>
<td><code>165</code></td>
<td><code>75</code></td>
<td><code><b>u</b></code>
</td></tr>
<tr>
<td> <code>22</code></td>
<td><code>26</code></td>
<td><code>16</code></td>
<td><code><b>SYN</b></code> (synchronous idle) </td>
<td> <code>54</code></td>
<td><code>66</code></td>
<td><code>36</code></td>
<td><code><b>6</b></code> </td>
<td> <code>86</code></td>
<td><code>126</code></td>
<td><code>56</code></td>
<td><code><b>V</b></code> </td>
<td> <code>118</code></td>
<td><code>166</code></td>
<td><code>76</code></td>
<td><code><b>v</b></code>
</td></tr>
<tr>
<td> <code>23</code></td>
<td><code>27</code></td>
<td><code>17</code></td>
<td><code><b>ETB</b></code> (end of transmission block) </td>
<td> <code>55</code></td>
<td><code>67</code></td>
<td><code>37</code></td>
<td><code><b>7</b></code> </td>
<td> <code>87</code></td>
<td><code>127</code></td>
<td><code>57</code></td>
<td><code><b>W</b></code> </td>
<td> <code>119</code></td>
<td><code>167</code></td>
<td><code>77</code></td>
<td><code><b>w</b></code>
</td></tr>
<tr>
<td> <code>24</code></td>
<td><code>30</code></td>
<td><code>18</code></td>
<td><code><b>CAN</b></code> (cancel) </td>
<td> <code>56</code></td>
<td><code>70</code></td>
<td><code>38</code></td>
<td><code><b>8</b></code> </td>
<td> <code>88</code></td>
<td><code>130</code></td>
<td><code>58</code></td>
<td><code><b>X</b></code> </td>
<td> <code>120</code></td>
<td><code>170</code></td>
<td><code>78</code></td>
<td><code><b>x</b></code>
</td></tr>
<tr>
<td> <code>25</code></td>
<td><code>31</code></td>
<td><code>19</code></td>
<td><code><b>EM</b></code> (end of medium) </td>
<td> <code>57</code></td>
<td><code>71</code></td>
<td><code>39</code></td>
<td><code><b>9</b></code> </td>
<td> <code>89</code></td>
<td><code>131</code></td>
<td><code>59</code></td>
<td><code><b>Y</b></code> </td>
<td> <code>121</code></td>
<td><code>171</code></td>
<td><code>79</code></td>
<td><code><b>y</b></code>
</td></tr>
<tr>
<td> <code>26</code></td>
<td><code>32</code></td>
<td><code>1a</code></td>
<td><code><b>SUB</b></code> (substitute) </td>
<td> <code>58</code></td>
<td><code>72</code></td>
<td><code>3a</code></td>
<td><code><b>:</b></code> </td>
<td> <code>90</code></td>
<td><code>132</code></td>
<td><code>5a</code></td>
<td><code><b>Z</b></code> </td>
<td> <code>122</code></td>
<td><code>172</code></td>
<td><code>7a</code></td>
<td><code><b>z</b></code>
</td></tr>
<tr>
<td> <code>27</code></td>
<td><code>33</code></td>
<td><code>1b</code></td>
<td><code><b>ESC</b></code> (escape) </td>
<td> <code>59</code></td>
<td><code>73</code></td>
<td><code>3b</code></td>
<td><code><b>;</b></code> </td>
<td> <code>91</code></td>
<td><code>133</code></td>
<td><code>5b</code></td>
<td><code><b>[</b></code> </td>
<td> <code>123</code></td>
<td><code>173</code></td>
<td><code>7b</code></td>
<td><code><b>{</b></code>
</td></tr>
<tr>
<td> <code>28</code></td>
<td><code>34</code></td>
<td><code>1c</code></td>
<td><code><b>FS</b></code> (file separator) </td>
<td> <code>60</code></td>
<td><code>74</code></td>
<td><code>3c</code></td>
<td><code><b><</b></code> </td>
<td> <code>92</code></td>
<td><code>134</code></td>
<td><code>5c</code></td>
<td><code><b>\ </b></code> </td>
<td> <code>124</code></td>
<td><code>174</code></td>
<td><code>7c</code></td>
<td><code><b>|</b></code>
</td></tr>
<tr>
<td> <code>29</code></td>
<td><code>35</code></td>
<td><code>1d</code></td>
<td><code><b>GS</b></code> (group separator) </td>
<td> <code>61</code></td>
<td><code>75</code></td>
<td><code>3d</code></td>
<td><code><b>=</b></code> </td>
<td> <code>93</code></td>
<td><code>135</code></td>
<td><code>5d</code></td>
<td><code><b>]</b></code> </td>
<td> <code>125</code></td>
<td><code>175</code></td>
<td><code>7d</code></td>
<td><code><b>}</b></code>
</td></tr>
<tr>
<td> <code>30</code></td>
<td><code>36</code></td>
<td><code>1e</code></td>
<td><code><b>RS</b></code> (record separator) </td>
<td> <code>62</code></td>
<td><code>76</code></td>
<td><code>3e</code></td>
<td><code><b>></b></code> </td>
<td> <code>94</code></td>
<td><code>136</code></td>
<td><code>5e</code></td>
<td><code><b>^</b></code> </td>
<td> <code>126</code></td>
<td><code>176</code></td>
<td><code>7e</code></td>
<td><code><b>~</b></code>
</td></tr>
<tr>
<td> <code>31</code></td>
<td><code>37</code></td>
<td><code>1f</code></td>
<td><code><b>US</b></code> (unit separator) </td>
<td> <code>63</code></td>
<td><code>77</code></td>
<td><code>3f</code></td>
<td><code><b>?</b></code> </td>
<td> <code>95</code></td>
<td><code>137</code></td>
<td><code>5f</code></td>
<td><code><b>_</b></code> </td>
<td> <code>127</code></td>
<td><code>177</code></td>
<td><code>7f</code></td>
<td><code><b>DEL</b></code> (delete)
</td></tr></table>
<p>Note: in Unicode, the ASCII character block is known as <a rel="nofollow" class="external text" href="http://www.unicode.org/charts/PDF/U0000.pdf"><code>U+0000..U+007F</code> Basic Latin</a>.
</p>
<h3><span class="editsection">[<a href="http://en.cppreference.com/mwiki/index.php?title=cpp/language/ascii&action=edit&section=1" title="Edit section: See also">edit</a>]</span> <span class="mw-headline" id="See_also">See also</span></h3>
<table class="t-dsc-begin">
<tr class="t-dsc">
<td colspan="2"> <div class="t-dsc-see"><span><a href="../../c/language/ascii.html" title="c/language/ascii">C documentation</a></span> for <span class="t-dsc-see-tt"><span>ASCII Chart</span></span></div>
</td></tr>
</table>
<!--
NewPP limit report
Preprocessor visited node count: 3284/1000000
Preprocessor generated node count: 8564/1000000
Post‐expand include size: 116284/2097152 bytes
Template argument size: 9028/2097152 bytes
Highest expansion depth: 13/40
Expensive parser function count: 0/100
-->
<!-- Saved in parser cache with key mwiki1-mwiki_en_:pcache:idhash:687-0!*!0!*!*!*!* and timestamp 20151130152802 -->
</div> <!-- /bodycontent -->
<!-- printfooter -->
<div class="printfooter">
Retrieved from "<a href="http://en.cppreference.com/mwiki/index.php?title=cpp/language/ascii&oldid=75636">http://en.cppreference.com/mwiki/index.php?title=cpp/language/ascii&oldid=75636</a>" </div>
<!-- /printfooter -->
<!-- catlinks -->
<div id='catlinks' class='catlinks catlinks-allhidden'></div> <!-- /catlinks -->
<div class="visualClear"></div>
<!-- debughtml -->
<!-- /debughtml -->
</div>
<!-- /bodyContent -->
</div>
</div>
<!-- /content -->
<!-- footer -->
<div id="cpp-footer-base" class="noprint">
<div id="footer">
<div id="cpp-navigation">
<h5>Navigation</h5>
<ul>
<li id="n-Support-us"><a href="http://www.cppreference.com/support" rel="nofollow">Support us</a></li><li id="n-recentchanges"><a href="http://en.cppreference.com/w/Special:RecentChanges" title="A list of recent changes in the wiki [r]" accesskey="r">Recent changes</a></li><li id="n-FAQ"><a href="http://en.cppreference.com/w/Cppreference:FAQ">FAQ</a></li><li id="n-Offline-version"><a href="http://en.cppreference.com/w/Cppreference:Archives">Offline version</a></li> </ul>
</div>
<div id="cpp-toolbox">
<h5><span>Toolbox</span><a href="ascii.html#"></a></h5>
<ul>
<li id="t-whatlinkshere"><a href="http://en.cppreference.com/w/Special:WhatLinksHere/cpp/language/ascii" title="A list of all wiki pages that link here [j]" accesskey="j">What links here</a></li><li id="t-recentchangeslinked"><a href="http://en.cppreference.com/w/Special:RecentChangesLinked/cpp/language/ascii" title="Recent changes in pages linked from this page [k]" accesskey="k">Related changes</a></li><li id="t-upload"><a href="http://upload.cppreference.com/w/Special:Upload" title="Upload files [u]" accesskey="u">Upload file</a></li><li id="t-specialpages"><a href="http://en.cppreference.com/w/Special:SpecialPages" title="A list of all special pages [q]" accesskey="q">Special pages</a></li><li id="t-print"><a href="http://en.cppreference.com/mwiki/index.php?title=cpp/language/ascii&printable=yes" rel="alternate" title="Printable version of this page [p]" accesskey="p">Printable version</a></li><li id="t-permalink"><a href="http://en.cppreference.com/mwiki/index.php?title=cpp/language/ascii&oldid=75636" title="Permanent link to this revision of the page">Permanent link</a></li><li id="t-info"><a href="http://en.cppreference.com/mwiki/index.php?title=cpp/language/ascii&action=info">Page information</a></li> </ul>
</div>
<div id="cpp-languages">
<div><ul><li>In other languages</li></ul></div>
<div><ul>
<li class="interwiki-ar"><a href="http://ar.cppreference.com/w/cpp/language/ascii" title="cpp/language/ascii" lang="ar" hreflang="ar">العربية</a></li><li class="interwiki-cs"><a href="http://cs.cppreference.com/w/cpp/language/ascii" title="cpp/language/ascii" lang="cs" hreflang="cs">Česky</a></li><li class="interwiki-de"><a href="http://de.cppreference.com/w/cpp/language/ascii" title="cpp/language/ascii" lang="de" hreflang="de">Deutsch</a></li><li class="interwiki-es"><a href="http://es.cppreference.com/w/cpp/language/ascii" title="cpp/language/ascii" lang="es" hreflang="es">Español</a></li><li class="interwiki-fr"><a href="http://fr.cppreference.com/w/cpp/language/ascii" title="cpp/language/ascii" lang="fr" hreflang="fr">Français</a></li><li class="interwiki-it"><a href="http://it.cppreference.com/w/cpp/language/ascii" title="cpp/language/ascii" lang="it" hreflang="it">Italiano</a></li><li class="interwiki-ja"><a href="http://ja.cppreference.com/w/cpp/language/ascii" title="cpp/language/ascii" lang="ja" hreflang="ja">日本語</a></li><li class="interwiki-pl"><a href="http://pl.cppreference.com/w/cpp/language/ascii" title="cpp/language/ascii" lang="pl" hreflang="pl">Polski</a></li><li class="interwiki-pt"><a href="http://pt.cppreference.com/w/cpp/language/ascii" title="cpp/language/ascii" lang="pt" hreflang="pt">Português</a></li><li class="interwiki-ru"><a href="http://ru.cppreference.com/w/cpp/language/ascii" title="cpp/language/ascii" lang="ru" hreflang="ru">Русский</a></li><li class="interwiki-tr"><a href="http://tr.cppreference.com/w/cpp/language/ascii" title="cpp/language/ascii" lang="tr" hreflang="tr">Türkçe</a></li><li class="interwiki-zh"><a href="http://zh.cppreference.com/w/cpp/language/ascii" title="cpp/language/ascii" lang="zh" hreflang="zh">中文</a></li> </ul></div>
</div>
<ul id="footer-info">
<li id="footer-info-lastmod"> This page was last modified on 24 January 2015, at 21:28.</li>
<li id="footer-info-viewcount">This page has been accessed 110,956 times.</li>
</ul>
<ul id="footer-places">
<li id="footer-places-privacy"><a href="http://en.cppreference.com/w/Cppreference:Privacy_policy" title="Cppreference:Privacy policy">Privacy policy</a></li>
<li id="footer-places-about"><a href="http://en.cppreference.com/w/Cppreference:About" title="Cppreference:About">About cppreference.com</a></li>
<li id="footer-places-disclaimer"><a href="http://en.cppreference.com/w/Cppreference:General_disclaimer" title="Cppreference:General disclaimer">Disclaimers</a></li>
</ul>
<ul id="footer-icons" class="noprint">
<li id="footer-poweredbyico">
<a href="http://www.mediawiki.org/"><img src="../../../mwiki/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" width="88" height="31" /></a> <a href="http://qbnz.com/highlighter/"><img src="../../../../upload.cppreference.com/mwiki/images/2/2b/powered_by_geshi_88x31.png" alt="Powered by GeSHi" height="31" width="88" /></a> <a href="http://www.tigertech.net/referral/cppreference.com"><img src="../../../../upload.cppreference.com/mwiki/images/9/94/powered_by_tigertech_88x31.png" alt="Hosted by Tiger Technologies" height="31" width="88" /></a> </li>
</ul>
<div style="clear:both">
</div>
</div>
</div>
<!-- /footer -->
<script>if(window.mw){
mw.loader.state({"site":"loading","user":"missing","user.groups":"ready"});
}</script>
<script src="../../../mwiki/load.php%3Fdebug=false&lang=en&modules=skins.cppreference2&only=scripts&skin=cppreference2&*"></script>
<script>if(window.mw){
mw.loader.load(["mediawiki.action.view.postEdit","mediawiki.user","mediawiki.page.ready","mediawiki.searchSuggest","mediawiki.hidpi","ext.gadget.ColiruCompiler"], null, true);
}</script>
<script src="../../../mwiki/load.php%3Fdebug=false&lang=en&modules=site&only=scripts&skin=cppreference2&*"></script>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-2828341-1']);
_gaq.push(['_setDomainName', 'cppreference.com']);
_gaq.push(['_trackPageview']);
</script><!-- Served in 0.891 secs. -->
</body>
<!-- Cached 20151130152802 -->
</html>
|