CINXE.COM

Ѫ - CYRILLIC CAPITAL LETTER BIG YUS (U+46A)

<!DOCTYPE HTML> <html lang="en"> <head> <meta charset="utf-8"> <title>Ѫ - CYRILLIC CAPITAL LETTER BIG YUS (U+46A) </title> <link href="https://fonts.googleapis.com/css?family=Gentium+Basic" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Alef&amp;subset=latin,hebrew" rel="stylesheet" type="text/css"> <link rel="icon" type="image/png" href="/favicon.ico" sizes="180x180"/> <link rel="apple-touch-icon" href="/favicon.ico"/> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content="U+46A , Ѫ , is called &quot;CYRILLIC CAPITAL LETTER BIG YUS&quot;, an uppercase letter, within the &#x27;Cyrillic&#x27; block (U+0400 through U+04FF)"> <link href="site.css?13" rel="stylesheet" type="text/css"> <script async src="https://www.googletagmanager.com/gtag/js?id=G-T5QWV798MK"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-T5QWV798MK'); </script> <script> // from https://stackoverflow.com/questions/400212/how-do-i-copy-to-the-clipboard-in-javascript function fallbackCopyTextToClipboard(text) { var textArea = document.createElement("textarea"); textArea.value = text; // Avoid scrolling to bottom textArea.style.top = "0"; textArea.style.left = "0"; textArea.style.position = "fixed"; document.body.appendChild(textArea); textArea.focus(); textArea.select(); try { var successful = document.execCommand('copy'); // TODO: visual feedback var msg = successful ? 'successful' : 'unsuccessful'; console.log('Fallback: Copying text command was ' + msg); } catch (err) { console.error('Unable to copy', err); } document.body.removeChild(textArea); } function copyTextToClipboard(text) { if (text.charAt(0) == "◌") // when copying, take out that circle we use to show combining characters text = text.substring(1); if (!navigator.clipboard) { fallbackCopyTextToClipboard(text); return; } navigator.clipboard.writeText(text).then(function() { //console.log('Async: Copying to clipboard was successful!'); }, function(err) { console.error('Async: Could not copy text: ', err); }); } window.onload = function () { var reg = document.querySelectorAll('.ubox'); reg.forEach( div => div.addEventListener('click', function(event) { copyTextToClipboard( div.innerHTML ); } ) ); }; </script> </head> <body> <table class="maintable" cellpadding="0" cellspacing="0"> <tr><th colspan="2" class="roundedheader">Input</th></tr> <tr class="noprint"> <th></th> <td> <div> <div> <br/> Character set up to date to Unicode 12. <span style="color:#a51">The tool as a whole is a new version, public in early stages. As I work on it, it will be missing features, occasionally its data, and sometimes give errors.</span><br/> <br/> Input currently recognised:<br/> <ul> <li>String with any characters, e.g. <a href="?s=%E3%8B%9B+%E2%98%BA+%E3%8B%A1">&#x32DB; &#x263A; &#x32E1;</a> or <a href="?s=%E2%82%AC">&#x20AC;</a> or <a href="?s=%28%E3%83%8E%E0%B2%A0%E7%9B%8A%E0%B2%A0%29%E3%83%8E%E5%BD%A1%E2%94%BB%E2%94%81%E2%94%BB">&#x28;&#x30CE;&#xCA0;&#x76CA;&#xCA0;&#x29;&#x30CE;&#x5F61;&#x253B;&#x2501;&#x253B;</a> or <a href="?s=%E1%98%9B%E2%81%90%CC%A4%E1%95%90%E1%90%B7">&#x161B;&#x2050;&#x324;&#x1550;&#x1437;</a> or <a href="?s=%E0%BC%BC%20%E3%81%A4%20%E2%97%95%5F%E2%97%95%20%E0%BC%BD%E3%81%A4">&#xF3C; &#x3064; &#x25D5;&#x5F;&#x25D5; &#xF3D;&#x3064;</a> or <a href="?s=%e2%99%a5%ef%b8%8e%20%e2%99%a5%ef%b8%8f">&#x2665;&#xFE0E; &#x2665;&#xFE0F;</a> or <a href="?s=%E2%97%A1%CC%88">&#x25E1;&#x0308;</a>.</li> <li>Refereces to one or more codepoints <span class="gr2">(one style at a time)</span> <ul> <li><a href="?s=U%2B205AC">U+205AC</a>, <a href="?s=U%2B1F9C0">U+1F9C0</a>, <a href="?s=U%2B2764">U+2764</a><!--, or multiple like <a href="?s=U%2B1F603%20U%2BFE0E">U+1F603 U+FE0E</a> or <a href="?s=U%2B1F603%20U%2BFE0F">U+1F603 U+FE0F</a>--></li> <li><a href="?s=0420">0420</a>, <a href="?s=c3a9">c3a9</a>, <a href="?s=e2808b">e2808b</a> - hex that is codepoint and/or UTF8 <span class="gr2"><small>(e.g. e2808b is probably U+200B, c3a9 could be either U+E9 or U+C3A9)</small></span></li> <li><a href="?s=%25c3%25a9">%C3%A9</a> - percent-encoded hex UTF8 <span class="gr2">(probably from URLs)</span></li> <li><a href="?s=%5Cxd0%5Cxa0">\xd0\xa0</a>, <a href="?s=%5Cuc3a9">\uc3a9</a>, <a href="?s=%5Cu%7Bc3a9%7D">\u{c3a9}</a>, <a href="?s=%5Cud83e%5Cuddc0">\ud83e\uddc0</a>, <a href="?s=%5CU0001F9C0">\U0001F9C0</a> - some escape styles used in code</li> <li><a href="?s=%26%2310152%3B">&amp;#10152;</a>, <a href="?s=%26%23x27A8%3B">&amp;#x27A8;</a>, <a href="?s=%26middot%3B">&amp;middot;</a> decimal/hex/named HTML/XML entity</li> </ul> </li> <li>Name search such as <a href="?s=cyrillic+de">cyrillic de</a>, <a href="?s=n">n</a>, <a href="?s=numeral">numeral</a>, <a href="?s=PLUS-MINUS+SIGN">plus-minus sign</a>, <a href="?s=exclamation+question">exclamation question</a>, <a href="?s=arrow+right">arrow right</a>, <a href="?s=hieroglyph">hieroglyph</a>. &nbsp;&nbsp;&nbsp;Includes entity names like <a href="?s=middot">middot</a> and <a href="?s=Ntilde">Ntilde</a>, and some of my own fuzziness, also to help find confusables.</li> </ul> Or you could get a <a href="?random-in-range=U+20,U+3134F">random character</a>.<br/><br/> </div> </div> </td> </tr> <tr> <th style="vertical-align:middle">Type here</th> <td id="inputtd"><form action=""><input type="text" name="s" id="inputfield" value="U+046a"/></form></td> </tr> <tr><th>Input was</th><td><span class="inputwas">U+046a</span></td> <tr><th>Interpretation</th><td>Assuming this is a U+ style codepoint for U+046A<br/> <br/>Looks like a single character, or reference to one. Will describe as such.</td></tr> <tr class="split"><th colspan="2" class="split"></th></tr> <tr><th colspan="2" class="interheader">Search</th></tr> <tr><th>Name search</th><td class="">no interesting words to search for</td></tr> <tr class="split"><th colspan="2" class="split"></th></tr> <tr><th colspan="2" class="interheader">Input as character</th></tr> <tr><th>Character</th><td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span class="xlarge ubox">Ѫ</span><a href="?s=U%2b046A" title="CYRILLIC CAPITAL LETTER BIG YUS">U+046A</a></td></tr> <tr><th>Character<br/>image</th><td><img class="uci" src="https://beep.knobs-dials.com/uci/046a.png"/><span style="clear:both"></span></td></tr> <tr><th>Nearby characters</th><td> <a href="?s=U%2b0452" title="CYRILLIC SMALL LETTER DJE" class="large ubox">ђ</a> <a href="?s=U%2b0453" title="CYRILLIC SMALL LETTER GJE" class="large ubox">ѓ</a> <a href="?s=U%2b0454" title="CYRILLIC SMALL LETTER UKRAINIAN IE" class="large ubox">є</a> <a href="?s=U%2b0455" title="CYRILLIC SMALL LETTER DZE" class="large ubox">ѕ</a> <a href="?s=U%2b0456" title="CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I" class="large ubox">і</a> <a href="?s=U%2b0457" title="CYRILLIC SMALL LETTER YI" class="large ubox">ї</a> <a href="?s=U%2b0458" title="CYRILLIC SMALL LETTER JE" class="large ubox">ј</a> <a href="?s=U%2b0459" title="CYRILLIC SMALL LETTER LJE" class="large ubox">љ</a> <a href="?s=U%2b045A" title="CYRILLIC SMALL LETTER NJE" class="large ubox">њ</a> <a href="?s=U%2b045B" title="CYRILLIC SMALL LETTER TSHE" class="large ubox">ћ</a> <a href="?s=U%2b045C" title="CYRILLIC SMALL LETTER KJE" class="large ubox">ќ</a> <a href="?s=U%2b045D" title="CYRILLIC SMALL LETTER I WITH GRAVE" class="large ubox">ѝ</a> <a href="?s=U%2b045E" title="CYRILLIC SMALL LETTER SHORT U" class="large ubox">ў</a> <a href="?s=U%2b045F" title="CYRILLIC SMALL LETTER DZHE" class="large ubox">џ</a> <a href="?s=U%2b0460" title="CYRILLIC CAPITAL LETTER OMEGA" class="large ubox">Ѡ</a> <a href="?s=U%2b0461" title="CYRILLIC SMALL LETTER OMEGA" class="large ubox">ѡ</a> <a href="?s=U%2b0462" title="CYRILLIC CAPITAL LETTER YAT" class="large ubox">Ѣ</a> <a href="?s=U%2b0463" title="CYRILLIC SMALL LETTER YAT" class="large ubox">ѣ</a> <a href="?s=U%2b0464" title="CYRILLIC CAPITAL LETTER IOTIFIED E" class="large ubox">Ѥ</a> <a href="?s=U%2b0465" title="CYRILLIC SMALL LETTER IOTIFIED E" class="large ubox">ѥ</a> <a href="?s=U%2b0466" title="CYRILLIC CAPITAL LETTER LITTLE YUS" class="large ubox">Ѧ</a> <a href="?s=U%2b0467" title="CYRILLIC SMALL LETTER LITTLE YUS" class="large ubox">ѧ</a> <a href="?s=U%2b0468" title="CYRILLIC CAPITAL LETTER IOTIFIED LITTLE YUS" class="large ubox">Ѩ</a> <a href="?s=U%2b0469" title="CYRILLIC SMALL LETTER IOTIFIED LITTLE YUS" class="large ubox">ѩ</a> <span style="font-size:120%; border:3px solid #888"><a href="?s=U%2b046A" title="CYRILLIC CAPITAL LETTER BIG YUS" class="large ubox">Ѫ</a></span> <a href="?s=U%2b046B" title="CYRILLIC SMALL LETTER BIG YUS" class="large ubox">ѫ</a> <a href="?s=U%2b046C" title="CYRILLIC CAPITAL LETTER IOTIFIED BIG YUS" class="large ubox">Ѭ</a> <a href="?s=U%2b046D" title="CYRILLIC SMALL LETTER IOTIFIED BIG YUS" class="large ubox">ѭ</a> <a href="?s=U%2b046E" title="CYRILLIC CAPITAL LETTER KSI" class="large ubox">Ѯ</a> <a href="?s=U%2b046F" title="CYRILLIC SMALL LETTER KSI" class="large ubox">ѯ</a> <a href="?s=U%2b0470" title="CYRILLIC CAPITAL LETTER PSI" class="large ubox">Ѱ</a> <a href="?s=U%2b0471" title="CYRILLIC SMALL LETTER PSI" class="large ubox">ѱ</a> <a href="?s=U%2b0472" title="CYRILLIC CAPITAL LETTER FITA" class="large ubox">Ѳ</a> <a href="?s=U%2b0473" title="CYRILLIC SMALL LETTER FITA" class="large ubox">ѳ</a> <a href="?s=U%2b0474" title="CYRILLIC CAPITAL LETTER IZHITSA" class="large ubox">Ѵ</a> <a href="?s=U%2b0475" title="CYRILLIC SMALL LETTER IZHITSA" class="large ubox">ѵ</a> <a href="?s=U%2b0476" title="CYRILLIC CAPITAL LETTER IZHITSA WITH DOUBLE GRAVE ACCENT" class="large ubox">Ѷ</a> <a href="?s=U%2b0477" title="CYRILLIC SMALL LETTER IZHITSA WITH DOUBLE GRAVE ACCENT" class="large ubox">ѷ</a> <a href="?s=U%2b0478" title="CYRILLIC CAPITAL LETTER UK" class="large ubox">Ѹ</a> <a href="?s=U%2b0479" title="CYRILLIC SMALL LETTER UK" class="large ubox">ѹ</a> <a href="?s=U%2b047A" title="CYRILLIC CAPITAL LETTER ROUND OMEGA" class="large ubox">Ѻ</a> <a href="?s=U%2b047B" title="CYRILLIC SMALL LETTER ROUND OMEGA" class="large ubox">ѻ</a> <a href="?s=U%2b047C" title="CYRILLIC CAPITAL LETTER OMEGA WITH TITLO" class="large ubox">Ѽ</a> <a href="?s=U%2b047D" title="CYRILLIC SMALL LETTER OMEGA WITH TITLO" class="large ubox">ѽ</a> <a href="?s=U%2b047E" title="CYRILLIC CAPITAL LETTER OT" class="large ubox">Ѿ</a> <a href="?s=U%2b047F" title="CYRILLIC SMALL LETTER OT" class="large ubox">ѿ</a> <a href="?s=U%2b0480" title="CYRILLIC CAPITAL LETTER KOPPA" class="large ubox">Ҁ</a> <a href="?s=U%2b0481" title="CYRILLIC SMALL LETTER KOPPA" class="large ubox">ҁ</a> </td><tr> <tr><th>Confusables<br/><span class="gr2">(experiment, needs work)</span></th><td><br/></td><tr> <tr class="split"><th colspan="2" class="split"></th></tr> <tr><th colspan="2" class="interheader">Unicode character data</th></tr> <tr><th>Character name</th><td><b style="font-size:130%">CYRILLIC CAPITAL LETTER BIG YUS</b></td></tr> <tr><th>Case change</th><td>Lowercase: <a href="?s=U%2b046B" title="CYRILLIC SMALL LETTER BIG YUS">U+046B</a> (ѫ)<br/> </td></tr> <tr><th>Categories</th><td>uppercase letter, Left-to-Right</td></tr> <tr class="noprint"><th>Links elsewhere</th><td><a target="fi" href="http://codepoints.net/U+046a">codepoints.net</a> &middot; <a target="fi" href="https://www.fontspace.com/unicode/char/046a">fontspace</a> &middot; <a target="fi" href="http://www.fileformat.info/info/unicode/char/046a/index.htm">fileformat.info</a></td></tr> <tr><th>In block</th><td><b>Cyrillic</b>, U+0400 <small>to</small> U+04FF <span class="mono gr1">(<a href="http://www.unicode.org/charts/PDF/U0400.pdf">PDF on unicode.org</a>)</span></td></tr> <tr><th>In unicode since approx<br/></th><td>1995</td><tr> <tr class="split"><th colspan="2" class="split"></th></tr> <tr><th colspan="2" class="interheader">Other unicode stuff</th></tr> <tr class="split"><th colspan="2" class="split"></th></tr> <tr><th colspan="2" class="interheader">Unicode string properties</th></tr> <tr><th>Normalization</th><td>No normalisations change the data<br/><span class="gr1 small">(does not necessarily mean nothing decomposes to this form)</span></td></tr> <tr><th>Encodings that can encode this properly</th><td class="highline mono">utf_8 &nbsp; utf_16 &nbsp; utf_32 &nbsp; gb18030</td> <tr><th>Encodings that will mangle your text</th><td class="highline mono">ascii &nbsp; latin_1 &nbsp; iso8859_2 &nbsp; iso8859_3 &nbsp; iso8859_4 &nbsp; iso8859_5 &nbsp; iso8859_6 &nbsp; iso8859_7 &nbsp; iso8859_8 &nbsp; iso8859_9 &nbsp; iso8859_10 &nbsp; iso8859_13 &nbsp; iso8859_14 &nbsp; iso8859_15 &nbsp; iso2022_jp &nbsp; iso2022_jp_1 &nbsp; iso2022_jp_2 &nbsp; iso2022_jp_2004 &nbsp; iso2022_jp_3 &nbsp; iso2022_jp_ext &nbsp; iso2022_kr &nbsp; gb2312 &nbsp; gbk &nbsp; big5 &nbsp; big5hkscs &nbsp; euc_jp &nbsp; euc_jis_2004 &nbsp; euc_jisx0213 &nbsp; euc_kr &nbsp; hz &nbsp; johab &nbsp; koi8_r &nbsp; koi8_u &nbsp; mac_cyrillic &nbsp; mac_greek &nbsp; mac_iceland &nbsp; mac_latin2 &nbsp; mac_roman &nbsp; mac_turkish &nbsp; ptcp154 &nbsp; shift_jis &nbsp; shift_jis_2004 &nbsp; shift_jisx0213 &nbsp; cp037 &nbsp; cp424 &nbsp; cp437 &nbsp; cp500 &nbsp; cp737 &nbsp; cp775 &nbsp; cp850 &nbsp; cp852 &nbsp; cp855 &nbsp; cp856 &nbsp; cp857 &nbsp; cp860 &nbsp; cp861 &nbsp; cp862 &nbsp; cp863 &nbsp; cp864 &nbsp; cp865 &nbsp; cp866 &nbsp; cp869 &nbsp; cp874 &nbsp; cp875 &nbsp; cp932 &nbsp; cp949 &nbsp; cp950 &nbsp; cp1006 &nbsp; cp1026 &nbsp; cp1140 &nbsp; cp1250 &nbsp; cp1251 &nbsp; cp1252 &nbsp; cp1253 &nbsp; cp1254 &nbsp; cp1255 &nbsp; cp1256 &nbsp; cp1257 &nbsp; cp1258</td> <tr class="split"><th colspan="2" class="split"></th></tr> <tr><th colspan="2" class="interheader">String encoding</th></tr> <tr><th colspan="2" style="text-align:center">Character stuff</th></tr> <tr><th>Named entity</th><td><span class="gr1">not applicable</a></td></tr> <tr><th>Alt code</th><td><span class="gr1">not applicable</a></td></tr> <tr><th colspan="2" style="text-align:center">String stuff</th></tr> <tr><th>HTML/XML<br/>numeric entities</th><td class="mono"><span class="gr1 small">All but a-zA-Z0-9 and space are encoded, which is a little overzealous</span><br/><span class="gr2 small">hexadecimal:</span><br/>&nbsp;&nbsp;<span class="gr2 mono">&amp;#x</span>46A;<br/><br/><span class="gr2 small">decimal:</span><br/>&nbsp;&nbsp;<span class="gr2 mono">&amp;#</span>1130;</td> <tr><th>UTF8 bytestring</th><td class="mono">as hex: d1aa<br/><span class="gr1">(UTF8 bytestring length is 2)</span></td> <tr><th>URL-encoded&nbsp;UTF8</th><td><span class="mono"><span class="gr2 mono">%</span>D1<span class="gr2 mono">%</span>AA</td></tr> <tr><th>Javascript<br/><span class="gr2">~ES3</span></th><td class="mono">"\u046a"</td> <tr><th><span class="gr2">ES6</span></th><td class="mono">"\u{46A}"</td> <tr><th>Python<br/><span class="gr2">py2</span></th><td class="mono"><span class="gr1 small">Unicode string:</span><br/>&nbsp; u'\u046a'<br/><span class="gr1 small">UTF8 bytestring</span>:<br/>&nbsp; '\xd1\xaa'</td> <tr><th><span class="gr2"><br/>py3</span></th><td class="mono"><span class="gr1 small">Unicode string:</span><br/>&nbsp; '\u046a'<br/><span class="gr1 small">UTF8 bytestring</span>:<br/>&nbsp; b'\xd1\xaa'</td> <tr><th>Ruby</th><td class="mono">'\u{046a}'</td> <tr><th>CSS (in :before/:after)</th><td class="mono">'\46A'</td> <tr><th>TeX<br/>(experiment)</th><td class="mono"><span class="gr1">Character in TeX:</span><br/>\cyrchar\CYRBYUS</td></tr> <tr class="split"><th colspan="2" class="split"></th></tr> <tr><th colspan="2" class="interheader">Emoji (experiment; TODO)</th></tr> <tr><th>Details</th><td><br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;By itself: <span class="large">Ѫ</span><br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;With VS15: <span class="large">Ѫ︎</span><br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;With VS16: <span class="large">Ѫ️</span></td></tr> <tr><th>Involved&nbsp;in modifier sequences</th><td>TODO</td></tr> <tr><th>Involved&nbsp;in ZWJ sequences</th><td>TODO</td></tr> <tr class="split"><th colspan="2" class="split"></th></tr> <tr><th colspan="2" class="interheader">CJK (experiment; TODO)</th></tr> <tr><th>Details</th><td>TODO</td></tr> <tr class="split"><th colspan="2" class="split"></th></tr> <tr class="split"><th colspan="2" class="split"></th></tr> <tr class="noprint"><th colspan="2" class="interheader">Unicode layout, and blocks used by the input</th></tr> <tr class="noprint"><th></th><td> <br/><b>BMP - Basic Multilingual Plane</b>:<br/> <div class="dblk f1"><span title="show random character within codepoint range U+0000 .. U+007F"><a href="?random-in-range=U+0000,U+007F">Basic Latin</a> (128) <a href="http://www.unicode.org/charts/PDF/U0000.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+0080 .. U+00FF"><a href="?random-in-range=U+0080,U+00FF">Latin-1 Supplement</a> (128) <a href="http://www.unicode.org/charts/PDF/U0080.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+0100 .. U+017F"><a href="?random-in-range=U+0100,U+017F">Latin Extended-A</a> (128) <a href="http://www.unicode.org/charts/PDF/U0100.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+0180 .. U+024F"><a href="?random-in-range=U+0180,U+024F">Latin Extended-B</a> (208) <a href="http://www.unicode.org/charts/PDF/U0180.pdf">pdf</a></span></div> <br/><br/> <div class="dblk f32"><span title="show random character within codepoint range U+0250 .. U+02AF"><a href="?random-in-range=U+0250,U+02AF">IPA Extensions</a> (96) <a href="http://www.unicode.org/charts/PDF/U0250.pdf">pdf</a></span></div> <br/><br/> <div class="dblk f32"><span title="show random character within codepoint range U+02B0 .. U+02FF"><a href="?random-in-range=U+02B0,U+02FF">Spacing Modifier Letters</a> (80) <a href="http://www.unicode.org/charts/PDF/U02B0.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+0300 .. U+036F"><a href="?random-in-range=U+0300,U+036F">Combining Diacritical Marks</a> (112) <a href="http://www.unicode.org/charts/PDF/U0300.pdf">pdf</a></span></div> <br/><br/> <div class="dblk f1"><span title="show random character within codepoint range U+0370 .. U+03FF"><a href="?random-in-range=U+0370,U+03FF">Greek and Coptic</a> (144) <a href="http://www.unicode.org/charts/PDF/U0370.pdf">pdf</a></span></div> <div class="dblk f1" style="font-weight:bold; border:2px solid orange !important"><span title="show random character within codepoint range U+0400 .. U+04FF"><a href="?random-in-range=U+0400,U+04FF">Cyrillic</a> (256) <a href="http://www.unicode.org/charts/PDF/U0400.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+0500 .. U+052F"><a href="?random-in-range=U+0500,U+052F">Cyrillic Supplement</a> (48) <a href="http://www.unicode.org/charts/PDF/U0500.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+0530 .. U+058F"><a href="?random-in-range=U+0530,U+058F">Armenian</a> (96) <a href="http://www.unicode.org/charts/PDF/U0530.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+0590 .. U+05FF"><a href="?random-in-range=U+0590,U+05FF">Hebrew</a> (112) <a href="http://www.unicode.org/charts/PDF/U0590.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+0600 .. U+06FF"><a href="?random-in-range=U+0600,U+06FF">Arabic</a> (256) <a href="http://www.unicode.org/charts/PDF/U0600.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+0700 .. U+074F"><a href="?random-in-range=U+0700,U+074F">Syriac</a> (80) <a href="http://www.unicode.org/charts/PDF/U0700.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+0750 .. U+077F"><a href="?random-in-range=U+0750,U+077F">Arabic Supplement</a> (48) <a href="http://www.unicode.org/charts/PDF/U0750.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+0780 .. U+07BF"><a href="?random-in-range=U+0780,U+07BF">Thaana</a> (64) <a href="http://www.unicode.org/charts/PDF/U0780.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+07C0 .. U+07FF"><a href="?random-in-range=U+07C0,U+07FF">NKo</a> (64) <a href="http://www.unicode.org/charts/PDF/U07C0.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+0800 .. U+083F"><a href="?random-in-range=U+0800,U+083F">Samaritan</a> (64) <a href="http://www.unicode.org/charts/PDF/U0800.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+0840 .. U+085F"><a href="?random-in-range=U+0840,U+085F">Mandaic</a> (32) <a href="http://www.unicode.org/charts/PDF/U0840.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+0860 .. U+086F"><a href="?random-in-range=U+0860,U+086F">Syriac Supplement</a> (16) <a href="http://www.unicode.org/charts/PDF/U0860.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+0870 .. U+089F">not allocated (48)</span></div> <div class="dblk f1"><span title="show random character within codepoint range U+08A0 .. U+08FF"><a href="?random-in-range=U+08A0,U+08FF">Arabic Extended-A</a> (96) <a href="http://www.unicode.org/charts/PDF/U08A0.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+0900 .. U+097F"><a href="?random-in-range=U+0900,U+097F">Devanagari</a> (128) <a href="http://www.unicode.org/charts/PDF/U0900.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+0980 .. U+09FF"><a href="?random-in-range=U+0980,U+09FF">Bengali</a> (128) <a href="http://www.unicode.org/charts/PDF/U0980.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+0A00 .. U+0A7F"><a href="?random-in-range=U+0A00,U+0A7F">Gurmukhi</a> (128) <a href="http://www.unicode.org/charts/PDF/U0A00.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+0A80 .. U+0AFF"><a href="?random-in-range=U+0A80,U+0AFF">Gujarati</a> (128) <a href="http://www.unicode.org/charts/PDF/U0A80.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+0B00 .. U+0B7F"><a href="?random-in-range=U+0B00,U+0B7F">Oriya</a> (128) <a href="http://www.unicode.org/charts/PDF/U0B00.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+0B80 .. U+0BFF"><a href="?random-in-range=U+0B80,U+0BFF">Tamil</a> (128) <a href="http://www.unicode.org/charts/PDF/U0B80.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+0C00 .. U+0C7F"><a href="?random-in-range=U+0C00,U+0C7F">Telugu</a> (128) <a href="http://www.unicode.org/charts/PDF/U0C00.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+0C80 .. U+0CFF"><a href="?random-in-range=U+0C80,U+0CFF">Kannada</a> (128) <a href="http://www.unicode.org/charts/PDF/U0C80.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+0D00 .. U+0D7F"><a href="?random-in-range=U+0D00,U+0D7F">Malayalam</a> (128) <a href="http://www.unicode.org/charts/PDF/U0D00.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+0D80 .. U+0DFF"><a href="?random-in-range=U+0D80,U+0DFF">Sinhala</a> (128) <a href="http://www.unicode.org/charts/PDF/U0D80.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+0E00 .. U+0E7F"><a href="?random-in-range=U+0E00,U+0E7F">Thai</a> (128) <a href="http://www.unicode.org/charts/PDF/U0E00.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+0E80 .. U+0EFF"><a href="?random-in-range=U+0E80,U+0EFF">Lao</a> (128) <a href="http://www.unicode.org/charts/PDF/U0E80.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+0F00 .. U+0FFF"><a href="?random-in-range=U+0F00,U+0FFF">Tibetan</a> (256) <a href="http://www.unicode.org/charts/PDF/U0F00.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+1000 .. U+109F"><a href="?random-in-range=U+1000,U+109F">Myanmar</a> (160) <a href="http://www.unicode.org/charts/PDF/U1000.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+10A0 .. U+10FF"><a href="?random-in-range=U+10A0,U+10FF">Georgian</a> (96) <a href="http://www.unicode.org/charts/PDF/U10A0.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+1100 .. U+11FF"><a href="?random-in-range=U+1100,U+11FF">Hangul Jamo</a> (256) <a href="http://www.unicode.org/charts/PDF/U1100.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+1200 .. U+137F"><a href="?random-in-range=U+1200,U+137F">Ethiopic</a> (384) <a href="http://www.unicode.org/charts/PDF/U1200.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+1380 .. U+139F"><a href="?random-in-range=U+1380,U+139F">Ethiopic Supplement</a> (32) <a href="http://www.unicode.org/charts/PDF/U1380.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+13A0 .. U+13FF"><a href="?random-in-range=U+13A0,U+13FF">Cherokee</a> (96) <a href="http://www.unicode.org/charts/PDF/U13A0.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+1400 .. U+167F"><a href="?random-in-range=U+1400,U+167F">Unified Canadian Aboriginal Syllabics</a> (640) <a href="http://www.unicode.org/charts/PDF/U1400.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+1680 .. U+169F"><a href="?random-in-range=U+1680,U+169F">Ogham</a> (32) <a href="http://www.unicode.org/charts/PDF/U1680.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+16A0 .. U+16FF"><a href="?random-in-range=U+16A0,U+16FF">Runic</a> (96) <a href="http://www.unicode.org/charts/PDF/U16A0.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+1700 .. U+171F"><a href="?random-in-range=U+1700,U+171F">Tagalog</a> (32) <a href="http://www.unicode.org/charts/PDF/U1700.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+1720 .. U+173F"><a href="?random-in-range=U+1720,U+173F">Hanunoo</a> (32) <a href="http://www.unicode.org/charts/PDF/U1720.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+1740 .. U+175F"><a href="?random-in-range=U+1740,U+175F">Buhid</a> (32) <a href="http://www.unicode.org/charts/PDF/U1740.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+1760 .. U+177F"><a href="?random-in-range=U+1760,U+177F">Tagbanwa</a> (32) <a href="http://www.unicode.org/charts/PDF/U1760.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+1780 .. U+17FF"><a href="?random-in-range=U+1780,U+17FF">Khmer</a> (128) <a href="http://www.unicode.org/charts/PDF/U1780.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+1800 .. U+18AF"><a href="?random-in-range=U+1800,U+18AF">Mongolian</a> (176) <a href="http://www.unicode.org/charts/PDF/U1800.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+18B0 .. U+18FF"><a href="?random-in-range=U+18B0,U+18FF">Unified Canadian Aboriginal Syllabics Extended</a> (80) <a href="http://www.unicode.org/charts/PDF/U18B0.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+1900 .. U+194F"><a href="?random-in-range=U+1900,U+194F">Limbu</a> (80) <a href="http://www.unicode.org/charts/PDF/U1900.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+1950 .. U+197F"><a href="?random-in-range=U+1950,U+197F">Tai Le</a> (48) <a href="http://www.unicode.org/charts/PDF/U1950.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+1980 .. U+19DF"><a href="?random-in-range=U+1980,U+19DF">New Tai Lue</a> (96) <a href="http://www.unicode.org/charts/PDF/U1980.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+19E0 .. U+19FF"><a href="?random-in-range=U+19E0,U+19FF">Khmer Symbols</a> (32) <a href="http://www.unicode.org/charts/PDF/U19E0.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+1A00 .. U+1A1F"><a href="?random-in-range=U+1A00,U+1A1F">Buginese</a> (32) <a href="http://www.unicode.org/charts/PDF/U1A00.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+1A20 .. U+1AAF"><a href="?random-in-range=U+1A20,U+1AAF">Tai Tham</a> (144) <a href="http://www.unicode.org/charts/PDF/U1A20.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+1AB0 .. U+1AFF"><a href="?random-in-range=U+1AB0,U+1AFF">Combining Diacritical Marks Extended</a> (80) <a href="http://www.unicode.org/charts/PDF/U1AB0.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+1B00 .. U+1B7F"><a href="?random-in-range=U+1B00,U+1B7F">Balinese</a> (128) <a href="http://www.unicode.org/charts/PDF/U1B00.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+1B80 .. U+1BBF"><a href="?random-in-range=U+1B80,U+1BBF">Sundanese</a> (64) <a href="http://www.unicode.org/charts/PDF/U1B80.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+1BC0 .. U+1BFF"><a href="?random-in-range=U+1BC0,U+1BFF">Batak</a> (64) <a href="http://www.unicode.org/charts/PDF/U1BC0.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+1C00 .. U+1C4F"><a href="?random-in-range=U+1C00,U+1C4F">Lepcha</a> (80) <a href="http://www.unicode.org/charts/PDF/U1C00.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+1C50 .. U+1C7F"><a href="?random-in-range=U+1C50,U+1C7F">Ol Chiki</a> (48) <a href="http://www.unicode.org/charts/PDF/U1C50.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+1C80 .. U+1C8F"><a href="?random-in-range=U+1C80,U+1C8F">Cyrillic Extended-C</a> (16) <a href="http://www.unicode.org/charts/PDF/U1C80.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+1C90 .. U+1CBF"><a href="?random-in-range=U+1C90,U+1CBF">Georgian Extended</a> (48) <a href="http://www.unicode.org/charts/PDF/U1C90.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+1CC0 .. U+1CCF"><a href="?random-in-range=U+1CC0,U+1CCF">Sundanese Supplement</a> (16) <a href="http://www.unicode.org/charts/PDF/U1CC0.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+1CD0 .. U+1CFF"><a href="?random-in-range=U+1CD0,U+1CFF">Vedic Extensions</a> (48) <a href="http://www.unicode.org/charts/PDF/U1CD0.pdf">pdf</a></span></div> <br/><br/> <div class="dblk f32"><span title="show random character within codepoint range U+1D00 .. U+1D7F"><a href="?random-in-range=U+1D00,U+1D7F">Phonetic Extensions</a> (128) <a href="http://www.unicode.org/charts/PDF/U1D00.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+1D80 .. U+1DBF"><a href="?random-in-range=U+1D80,U+1DBF">Phonetic Extensions Supplement</a> (64) <a href="http://www.unicode.org/charts/PDF/U1D80.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+1DC0 .. U+1DFF"><a href="?random-in-range=U+1DC0,U+1DFF">Combining Diacritical Marks Supplement</a> (64) <a href="http://www.unicode.org/charts/PDF/U1DC0.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+1E00 .. U+1EFF"><a href="?random-in-range=U+1E00,U+1EFF">Latin Extended Additional</a> (256) <a href="http://www.unicode.org/charts/PDF/U1E00.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+1F00 .. U+1FFF"><a href="?random-in-range=U+1F00,U+1FFF">Greek Extended</a> (256) <a href="http://www.unicode.org/charts/PDF/U1F00.pdf">pdf</a></span></div> <br/><br/> <div class="dblk f32"><span title="show random character within codepoint range U+2000 .. U+206F"><a href="?random-in-range=U+2000,U+206F">General Punctuation</a> (112) <a href="http://www.unicode.org/charts/PDF/U2000.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+2070 .. U+209F"><a href="?random-in-range=U+2070,U+209F">Superscripts and Subscripts</a> (48) <a href="http://www.unicode.org/charts/PDF/U2070.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+20A0 .. U+20CF"><a href="?random-in-range=U+20A0,U+20CF">Currency Symbols</a> (48) <a href="http://www.unicode.org/charts/PDF/U20A0.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+20D0 .. U+20FF"><a href="?random-in-range=U+20D0,U+20FF">Combining Diacritical Marks for Symbols</a> (48) <a href="http://www.unicode.org/charts/PDF/U20D0.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+2100 .. U+214F"><a href="?random-in-range=U+2100,U+214F">Letterlike Symbols</a> (80) <a href="http://www.unicode.org/charts/PDF/U2100.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+2150 .. U+218F"><a href="?random-in-range=U+2150,U+218F">Number Forms</a> (64) <a href="http://www.unicode.org/charts/PDF/U2150.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+2190 .. U+21FF"><a href="?random-in-range=U+2190,U+21FF">Arrows</a> (112) <a href="http://www.unicode.org/charts/PDF/U2190.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+2200 .. U+22FF"><a href="?random-in-range=U+2200,U+22FF">Mathematical Operators</a> (256) <a href="http://www.unicode.org/charts/PDF/U2200.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+2300 .. U+23FF"><a href="?random-in-range=U+2300,U+23FF">Miscellaneous Technical</a> (256) <a href="http://www.unicode.org/charts/PDF/U2300.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+2400 .. U+243F"><a href="?random-in-range=U+2400,U+243F">Control Pictures</a> (64) <a href="http://www.unicode.org/charts/PDF/U2400.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+2440 .. U+245F"><a href="?random-in-range=U+2440,U+245F">Optical Character Recognition</a> (32) <a href="http://www.unicode.org/charts/PDF/U2440.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+2460 .. U+24FF"><a href="?random-in-range=U+2460,U+24FF">Enclosed Alphanumerics</a> (160) <a href="http://www.unicode.org/charts/PDF/U2460.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+2500 .. U+257F"><a href="?random-in-range=U+2500,U+257F">Box Drawing</a> (128) <a href="http://www.unicode.org/charts/PDF/U2500.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+2580 .. U+259F"><a href="?random-in-range=U+2580,U+259F">Block Elements</a> (32) <a href="http://www.unicode.org/charts/PDF/U2580.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+25A0 .. U+25FF"><a href="?random-in-range=U+25A0,U+25FF">Geometric Shapes</a> (96) <a href="http://www.unicode.org/charts/PDF/U25A0.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+2600 .. U+26FF"><a href="?random-in-range=U+2600,U+26FF">Miscellaneous Symbols</a> (256) <a href="http://www.unicode.org/charts/PDF/U2600.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+2700 .. U+27BF"><a href="?random-in-range=U+2700,U+27BF">Dingbats</a> (192) <a href="http://www.unicode.org/charts/PDF/U2700.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+27C0 .. U+27EF"><a href="?random-in-range=U+27C0,U+27EF">Miscellaneous Mathematical Symbols-A</a> (48) <a href="http://www.unicode.org/charts/PDF/U27C0.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+27F0 .. U+27FF"><a href="?random-in-range=U+27F0,U+27FF">Supplemental Arrows-A</a> (16) <a href="http://www.unicode.org/charts/PDF/U27F0.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+2800 .. U+28FF"><a href="?random-in-range=U+2800,U+28FF">Braille Patterns</a> (256) <a href="http://www.unicode.org/charts/PDF/U2800.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+2900 .. U+297F"><a href="?random-in-range=U+2900,U+297F">Supplemental Arrows-B</a> (128) <a href="http://www.unicode.org/charts/PDF/U2900.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+2980 .. U+29FF"><a href="?random-in-range=U+2980,U+29FF">Miscellaneous Mathematical Symbols-B</a> (128) <a href="http://www.unicode.org/charts/PDF/U2980.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+2A00 .. U+2AFF"><a href="?random-in-range=U+2A00,U+2AFF">Supplemental Mathematical Operators</a> (256) <a href="http://www.unicode.org/charts/PDF/U2A00.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+2B00 .. U+2BFF"><a href="?random-in-range=U+2B00,U+2BFF">Miscellaneous Symbols and Arrows</a> (256) <a href="http://www.unicode.org/charts/PDF/U2B00.pdf">pdf</a></span></div> <br/><br/> <div class="dblk f4"><span title="show random character within codepoint range U+2C00 .. U+2C5F"><a href="?random-in-range=U+2C00,U+2C5F">Glagolitic</a> (96) <a href="http://www.unicode.org/charts/PDF/U2C00.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+2C60 .. U+2C7F"><a href="?random-in-range=U+2C60,U+2C7F">Latin Extended-C</a> (32) <a href="http://www.unicode.org/charts/PDF/U2C60.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+2C80 .. U+2CFF"><a href="?random-in-range=U+2C80,U+2CFF">Coptic</a> (128) <a href="http://www.unicode.org/charts/PDF/U2C80.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+2D00 .. U+2D2F"><a href="?random-in-range=U+2D00,U+2D2F">Georgian Supplement</a> (48) <a href="http://www.unicode.org/charts/PDF/U2D00.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+2D30 .. U+2D7F"><a href="?random-in-range=U+2D30,U+2D7F">Tifinagh</a> (80) <a href="http://www.unicode.org/charts/PDF/U2D30.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+2D80 .. U+2DDF"><a href="?random-in-range=U+2D80,U+2DDF">Ethiopic Extended</a> (96) <a href="http://www.unicode.org/charts/PDF/U2D80.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+2DE0 .. U+2DFF"><a href="?random-in-range=U+2DE0,U+2DFF">Cyrillic Extended-A</a> (32) <a href="http://www.unicode.org/charts/PDF/U2DE0.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+2E00 .. U+2E7F"><a href="?random-in-range=U+2E00,U+2E7F">Supplemental Punctuation</a> (128) <a href="http://www.unicode.org/charts/PDF/U2E00.pdf">pdf</a></span></div> <br/><br/> <div class="dblk f1"><span title="show random character within codepoint range U+2E80 .. U+2EFF"><a href="?random-in-range=U+2E80,U+2EFF">CJK Radicals Supplement</a> (128) <a href="http://www.unicode.org/charts/PDF/U2E80.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+2F00 .. U+2FDF"><a href="?random-in-range=U+2F00,U+2FDF">Kangxi Radicals</a> (224) <a href="http://www.unicode.org/charts/PDF/U2F00.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+2FE0 .. U+2FEF">not allocated (16)</span></div> <div class="dblk f32"><span title="show random character within codepoint range U+2FF0 .. U+2FFF"><a href="?random-in-range=U+2FF0,U+2FFF">Ideographic Description Characters</a> (16) <a href="http://www.unicode.org/charts/PDF/U2FF0.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+3000 .. U+303F"><a href="?random-in-range=U+3000,U+303F">CJK Symbols and Punctuation</a> (64) <a href="http://www.unicode.org/charts/PDF/U3000.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+3040 .. U+309F"><a href="?random-in-range=U+3040,U+309F">Hiragana</a> (96) <a href="http://www.unicode.org/charts/PDF/U3040.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+30A0 .. U+30FF"><a href="?random-in-range=U+30A0,U+30FF">Katakana</a> (96) <a href="http://www.unicode.org/charts/PDF/U30A0.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+3100 .. U+312F"><a href="?random-in-range=U+3100,U+312F">Bopomofo</a> (48) <a href="http://www.unicode.org/charts/PDF/U3100.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+3130 .. U+318F"><a href="?random-in-range=U+3130,U+318F">Hangul Compatibility Jamo</a> (96) <a href="http://www.unicode.org/charts/PDF/U3130.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+3190 .. U+319F"><a href="?random-in-range=U+3190,U+319F">Kanbun</a> (16) <a href="http://www.unicode.org/charts/PDF/U3190.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+31A0 .. U+31BF"><a href="?random-in-range=U+31A0,U+31BF">Bopomofo Extended</a> (32) <a href="http://www.unicode.org/charts/PDF/U31A0.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+31C0 .. U+31EF"><a href="?random-in-range=U+31C0,U+31EF">CJK Strokes</a> (48) <a href="http://www.unicode.org/charts/PDF/U31C0.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+31F0 .. U+31FF"><a href="?random-in-range=U+31F0,U+31FF">Katakana Phonetic Extensions</a> (16) <a href="http://www.unicode.org/charts/PDF/U31F0.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+3200 .. U+32FF"><a href="?random-in-range=U+3200,U+32FF">Enclosed CJK Letters and Months</a> (256) <a href="http://www.unicode.org/charts/PDF/U3200.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+3300 .. U+33FF"><a href="?random-in-range=U+3300,U+33FF">CJK Compatibility</a> (256) <a href="http://www.unicode.org/charts/PDF/U3300.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+3400 .. U+4DBF"><a href="?random-in-range=U+3400,U+4DBF">CJK Unified Ideographs Extension A</a> (6592) <a href="http://www.unicode.org/charts/PDF/U3400.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+4DC0 .. U+4DFF"><a href="?random-in-range=U+4DC0,U+4DFF">Yijing Hexagram Symbols</a> (64) <a href="http://www.unicode.org/charts/PDF/U4DC0.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+4E00 .. U+9FFF"><a href="?random-in-range=U+4E00,U+9FFF">CJK Unified Ideographs</a> (20992) <a href="http://www.unicode.org/charts/PDF/U4E00.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+A000 .. U+A48F"><a href="?random-in-range=U+A000,U+A48F">Yi Syllables</a> (1168) <a href="http://www.unicode.org/charts/PDF/UA000.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+A490 .. U+A4CF"><a href="?random-in-range=U+A490,U+A4CF">Yi Radicals</a> (64) <a href="http://www.unicode.org/charts/PDF/UA490.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+A4D0 .. U+A4FF"><a href="?random-in-range=U+A4D0,U+A4FF">Lisu</a> (48) <a href="http://www.unicode.org/charts/PDF/UA4D0.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+A500 .. U+A63F"><a href="?random-in-range=U+A500,U+A63F">Vai</a> (320) <a href="http://www.unicode.org/charts/PDF/UA500.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+A640 .. U+A69F"><a href="?random-in-range=U+A640,U+A69F">Cyrillic Extended-B</a> (96) <a href="http://www.unicode.org/charts/PDF/UA640.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+A6A0 .. U+A6FF"><a href="?random-in-range=U+A6A0,U+A6FF">Bamum</a> (96) <a href="http://www.unicode.org/charts/PDF/UA6A0.pdf">pdf</a></span></div> <div class="dblk f1 f32"><span title="show random character within codepoint range U+A700 .. U+A71F"><a href="?random-in-range=U+A700,U+A71F">Modifier Tone Letters</a> (32) <a href="http://www.unicode.org/charts/PDF/UA700.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+A720 .. U+A7FF"><a href="?random-in-range=U+A720,U+A7FF">Latin Extended-D</a> (224) <a href="http://www.unicode.org/charts/PDF/UA720.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+A800 .. U+A82F"><a href="?random-in-range=U+A800,U+A82F">Syloti Nagri</a> (48) <a href="http://www.unicode.org/charts/PDF/UA800.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+A830 .. U+A83F"><a href="?random-in-range=U+A830,U+A83F">Common Indic Number Forms</a> (16) <a href="http://www.unicode.org/charts/PDF/UA830.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+A840 .. U+A87F"><a href="?random-in-range=U+A840,U+A87F">Phags-pa</a> (64) <a href="http://www.unicode.org/charts/PDF/UA840.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+A880 .. U+A8DF"><a href="?random-in-range=U+A880,U+A8DF">Saurashtra</a> (96) <a href="http://www.unicode.org/charts/PDF/UA880.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+A8E0 .. U+A8FF"><a href="?random-in-range=U+A8E0,U+A8FF">Devanagari Extended</a> (32) <a href="http://www.unicode.org/charts/PDF/UA8E0.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+A900 .. U+A92F"><a href="?random-in-range=U+A900,U+A92F">Kayah Li</a> (48) <a href="http://www.unicode.org/charts/PDF/UA900.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+A930 .. U+A95F"><a href="?random-in-range=U+A930,U+A95F">Rejang</a> (48) <a href="http://www.unicode.org/charts/PDF/UA930.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+A960 .. U+A97F"><a href="?random-in-range=U+A960,U+A97F">Hangul Jamo Extended-A</a> (32) <a href="http://www.unicode.org/charts/PDF/UA960.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+A980 .. U+A9DF"><a href="?random-in-range=U+A980,U+A9DF">Javanese</a> (96) <a href="http://www.unicode.org/charts/PDF/UA980.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+A9E0 .. U+A9FF"><a href="?random-in-range=U+A9E0,U+A9FF">Myanmar Extended-B</a> (32) <a href="http://www.unicode.org/charts/PDF/UA9E0.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+AA00 .. U+AA5F"><a href="?random-in-range=U+AA00,U+AA5F">Cham</a> (96) <a href="http://www.unicode.org/charts/PDF/UAA00.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+AA60 .. U+AA7F"><a href="?random-in-range=U+AA60,U+AA7F">Myanmar Extended-A</a> (32) <a href="http://www.unicode.org/charts/PDF/UAA60.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+AA80 .. U+AADF"><a href="?random-in-range=U+AA80,U+AADF">Tai Viet</a> (96) <a href="http://www.unicode.org/charts/PDF/UAA80.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+AAE0 .. U+AAFF"><a href="?random-in-range=U+AAE0,U+AAFF">Meetei Mayek Extensions</a> (32) <a href="http://www.unicode.org/charts/PDF/UAAE0.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+AB00 .. U+AB2F"><a href="?random-in-range=U+AB00,U+AB2F">Ethiopic Extended-A</a> (48) <a href="http://www.unicode.org/charts/PDF/UAB00.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+AB30 .. U+AB6F"><a href="?random-in-range=U+AB30,U+AB6F">Latin Extended-E</a> (64) <a href="http://www.unicode.org/charts/PDF/UAB30.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+AB70 .. U+ABBF"><a href="?random-in-range=U+AB70,U+ABBF">Cherokee Supplement</a> (80) <a href="http://www.unicode.org/charts/PDF/UAB70.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+ABC0 .. U+ABFF"><a href="?random-in-range=U+ABC0,U+ABFF">Meetei Mayek</a> (64) <a href="http://www.unicode.org/charts/PDF/UABC0.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+AC00 .. U+D7AF"><a href="?random-in-range=U+AC00,U+D7AF">Hangul Syllables</a> (11184) <a href="http://www.unicode.org/charts/PDF/UAC00.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+D7B0 .. U+D7FF"><a href="?random-in-range=U+D7B0,U+D7FF">Hangul Jamo Extended-B</a> (80) <a href="http://www.unicode.org/charts/PDF/UD7B0.pdf">pdf</a></span></div> <br/><br/> <div class="dblk f64"><span title="show random character within codepoint range U+D800 .. U+DB7F"><a href="?random-in-range=U+D800,U+DB7F">High Surrogates</a> (896) <a href="http://www.unicode.org/charts/PDF/UD800.pdf">pdf</a></span></div> <div class="dblk f64 f128"><span title="codepoint range U+DB80 .. U+DBFF">High Private Use Surrogates (128)</span></div> <div class="dblk f64"><span title="show random character within codepoint range U+DC00 .. U+DFFF"><a href="?random-in-range=U+DC00,U+DFFF">Low Surrogates</a> (1024) <a href="http://www.unicode.org/charts/PDF/UDC00.pdf">pdf</a></span></div> <br/><br/> <div class="dblk f128"><span title="show random character within codepoint range U+E000 .. U+F8FF"><a href="?random-in-range=U+E000,U+F8FF">Private Use Area</a> (6400) <a href="http://www.unicode.org/charts/PDF/UE000.pdf">pdf</a></span></div> <br/><br/> <div class="dblk f1"><span title="show random character within codepoint range U+F900 .. U+FAFF"><a href="?random-in-range=U+F900,U+FAFF">CJK Compatibility Ideographs</a> (512) <a href="http://www.unicode.org/charts/PDF/UF900.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+FB00 .. U+FB4F"><a href="?random-in-range=U+FB00,U+FB4F">Alphabetic Presentation Forms</a> (80) <a href="http://www.unicode.org/charts/PDF/UFB00.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+FB50 .. U+FDFF"><a href="?random-in-range=U+FB50,U+FDFF">Arabic Presentation Forms-A</a> (688) <a href="http://www.unicode.org/charts/PDF/UFB50.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+FE00 .. U+FE0F"><a href="?random-in-range=U+FE00,U+FE0F">Variation Selectors</a> (16) <a href="http://www.unicode.org/charts/PDF/UFE00.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+FE10 .. U+FE1F"><a href="?random-in-range=U+FE10,U+FE1F">Vertical Forms</a> (16) <a href="http://www.unicode.org/charts/PDF/UFE10.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+FE20 .. U+FE2F"><a href="?random-in-range=U+FE20,U+FE2F">Combining Half Marks</a> (16) <a href="http://www.unicode.org/charts/PDF/UFE20.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+FE30 .. U+FE4F"><a href="?random-in-range=U+FE30,U+FE4F">CJK Compatibility Forms</a> (32) <a href="http://www.unicode.org/charts/PDF/UFE30.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+FE50 .. U+FE6F"><a href="?random-in-range=U+FE50,U+FE6F">Small Form Variants</a> (32) <a href="http://www.unicode.org/charts/PDF/UFE50.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+FE70 .. U+FEFF"><a href="?random-in-range=U+FE70,U+FEFF">Arabic Presentation Forms-B</a> (144) <a href="http://www.unicode.org/charts/PDF/UFE70.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+FF00 .. U+FFEF"><a href="?random-in-range=U+FF00,U+FFEF">Halfwidth and Fullwidth Forms</a> (240) <a href="http://www.unicode.org/charts/PDF/UFF00.pdf">pdf</a></span></div> <br/><br/> <div class="dblk f64"><span title="show random character within codepoint range U+FFF0 .. U+FFFF"><a href="?random-in-range=U+FFF0,U+FFFF">Specials</a> (16) <a href="http://www.unicode.org/charts/PDF/UFFF0.pdf">pdf</a></span></div> <br/><hr/><br/><span style="color:orange"><b>End of range that UCS2-based Unicode implementations can store.</b><br/>UCS4 implementations have no real limit, UTF-16 implementations can go beyond using surrogates.</span> <br/><br/><br/> <hr/><b>SMP - Supplemental Multilingual Plane</b>:<br/> <div class="dblk f4"><span title="show random character within codepoint range U+10000 .. U+1007F"><a href="?random-in-range=U+10000,U+1007F">Linear B Syllabary</a> (128) <a href="http://www.unicode.org/charts/PDF/U10000.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+10080 .. U+100FF"><a href="?random-in-range=U+10080,U+100FF">Linear B Ideograms</a> (128) <a href="http://www.unicode.org/charts/PDF/U10080.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+10100 .. U+1013F"><a href="?random-in-range=U+10100,U+1013F">Aegean Numbers</a> (64) <a href="http://www.unicode.org/charts/PDF/U10100.pdf">pdf</a></span></div> <div class="dblk f2 f4"><span title="show random character within codepoint range U+10140 .. U+1018F"><a href="?random-in-range=U+10140,U+1018F">Ancient Greek Numbers</a> (80) <a href="http://www.unicode.org/charts/PDF/U10140.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+10190 .. U+101CF"><a href="?random-in-range=U+10190,U+101CF">Ancient Symbols</a> (64) <a href="http://www.unicode.org/charts/PDF/U10190.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+101D0 .. U+101FF"><a href="?random-in-range=U+101D0,U+101FF">Phaistos Disc</a> (48) <a href="http://www.unicode.org/charts/PDF/U101D0.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+10200 .. U+1027F">not allocated (128)</span></div> <div class="dblk f4"><span title="show random character within codepoint range U+10280 .. U+1029F"><a href="?random-in-range=U+10280,U+1029F">Lycian</a> (32) <a href="http://www.unicode.org/charts/PDF/U10280.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+102A0 .. U+102DF"><a href="?random-in-range=U+102A0,U+102DF">Carian</a> (64) <a href="http://www.unicode.org/charts/PDF/U102A0.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+102E0 .. U+102FF"><a href="?random-in-range=U+102E0,U+102FF">Coptic Epact Numbers</a> (32) <a href="http://www.unicode.org/charts/PDF/U102E0.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+10300 .. U+1032F"><a href="?random-in-range=U+10300,U+1032F">Old Italic</a> (48) <a href="http://www.unicode.org/charts/PDF/U10300.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+10330 .. U+1034F"><a href="?random-in-range=U+10330,U+1034F">Gothic</a> (32) <a href="http://www.unicode.org/charts/PDF/U10330.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+10350 .. U+1037F"><a href="?random-in-range=U+10350,U+1037F">Old Permic</a> (48) <a href="http://www.unicode.org/charts/PDF/U10350.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+10380 .. U+1039F"><a href="?random-in-range=U+10380,U+1039F">Ugaritic</a> (32) <a href="http://www.unicode.org/charts/PDF/U10380.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+103A0 .. U+103DF"><a href="?random-in-range=U+103A0,U+103DF">Old Persian</a> (64) <a href="http://www.unicode.org/charts/PDF/U103A0.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+103E0 .. U+103FF">not allocated (32)</span></div> <div class="dblk f2"><span title="show random character within codepoint range U+10400 .. U+1044F"><a href="?random-in-range=U+10400,U+1044F">Deseret</a> (80) <a href="http://www.unicode.org/charts/PDF/U10400.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+10450 .. U+1047F"><a href="?random-in-range=U+10450,U+1047F">Shavian</a> (48) <a href="http://www.unicode.org/charts/PDF/U10450.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+10480 .. U+104AF"><a href="?random-in-range=U+10480,U+104AF">Osmanya</a> (48) <a href="http://www.unicode.org/charts/PDF/U10480.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+104B0 .. U+104FF"><a href="?random-in-range=U+104B0,U+104FF">Osage</a> (80) <a href="http://www.unicode.org/charts/PDF/U104B0.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+10500 .. U+1052F"><a href="?random-in-range=U+10500,U+1052F">Elbasan</a> (48) <a href="http://www.unicode.org/charts/PDF/U10500.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+10530 .. U+1056F"><a href="?random-in-range=U+10530,U+1056F">Caucasian Albanian</a> (64) <a href="http://www.unicode.org/charts/PDF/U10530.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+10570 .. U+105FF">not allocated (144)</span></div> <div class="dblk f4"><span title="show random character within codepoint range U+10600 .. U+1077F"><a href="?random-in-range=U+10600,U+1077F">Linear A</a> (384) <a href="http://www.unicode.org/charts/PDF/U10600.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+10780 .. U+107FF">not allocated (128)</span></div> <div class="dblk f4"><span title="show random character within codepoint range U+10800 .. U+1083F"><a href="?random-in-range=U+10800,U+1083F">Cypriot Syllabary</a> (64) <a href="http://www.unicode.org/charts/PDF/U10800.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+10840 .. U+1085F"><a href="?random-in-range=U+10840,U+1085F">Imperial Aramaic</a> (32) <a href="http://www.unicode.org/charts/PDF/U10840.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+10860 .. U+1087F"><a href="?random-in-range=U+10860,U+1087F">Palmyrene</a> (32) <a href="http://www.unicode.org/charts/PDF/U10860.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+10880 .. U+108AF"><a href="?random-in-range=U+10880,U+108AF">Nabataean</a> (48) <a href="http://www.unicode.org/charts/PDF/U10880.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+108B0 .. U+108DF">not allocated (48)</span></div> <div class="dblk f4"><span title="show random character within codepoint range U+108E0 .. U+108FF"><a href="?random-in-range=U+108E0,U+108FF">Hatran</a> (32) <a href="http://www.unicode.org/charts/PDF/U108E0.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+10900 .. U+1091F"><a href="?random-in-range=U+10900,U+1091F">Phoenician</a> (32) <a href="http://www.unicode.org/charts/PDF/U10900.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+10920 .. U+1093F"><a href="?random-in-range=U+10920,U+1093F">Lydian</a> (32) <a href="http://www.unicode.org/charts/PDF/U10920.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+10940 .. U+1097F">not allocated (64)</span></div> <div class="dblk f4"><span title="show random character within codepoint range U+10980 .. U+1099F"><a href="?random-in-range=U+10980,U+1099F">Meroitic Hieroglyphs</a> (32) <a href="http://www.unicode.org/charts/PDF/U10980.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+109A0 .. U+109FF"><a href="?random-in-range=U+109A0,U+109FF">Meroitic Cursive</a> (96) <a href="http://www.unicode.org/charts/PDF/U109A0.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+10A00 .. U+10A5F"><a href="?random-in-range=U+10A00,U+10A5F">Kharoshthi</a> (96) <a href="http://www.unicode.org/charts/PDF/U10A00.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+10A60 .. U+10A7F"><a href="?random-in-range=U+10A60,U+10A7F">Old South Arabian</a> (32) <a href="http://www.unicode.org/charts/PDF/U10A60.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+10A80 .. U+10A9F"><a href="?random-in-range=U+10A80,U+10A9F">Old North Arabian</a> (32) <a href="http://www.unicode.org/charts/PDF/U10A80.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+10AA0 .. U+10ABF">not allocated (32)</span></div> <div class="dblk f4"><span title="show random character within codepoint range U+10AC0 .. U+10AFF"><a href="?random-in-range=U+10AC0,U+10AFF">Manichaean</a> (64) <a href="http://www.unicode.org/charts/PDF/U10AC0.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+10B00 .. U+10B3F"><a href="?random-in-range=U+10B00,U+10B3F">Avestan</a> (64) <a href="http://www.unicode.org/charts/PDF/U10B00.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+10B40 .. U+10B5F"><a href="?random-in-range=U+10B40,U+10B5F">Inscriptional Parthian</a> (32) <a href="http://www.unicode.org/charts/PDF/U10B40.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+10B60 .. U+10B7F"><a href="?random-in-range=U+10B60,U+10B7F">Inscriptional Pahlavi</a> (32) <a href="http://www.unicode.org/charts/PDF/U10B60.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+10B80 .. U+10BAF"><a href="?random-in-range=U+10B80,U+10BAF">Psalter Pahlavi</a> (48) <a href="http://www.unicode.org/charts/PDF/U10B80.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+10BB0 .. U+10BFF">not allocated (80)</span></div> <div class="dblk f4"><span title="show random character within codepoint range U+10C00 .. U+10C4F"><a href="?random-in-range=U+10C00,U+10C4F">Old Turkic</a> (80) <a href="http://www.unicode.org/charts/PDF/U10C00.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+10C50 .. U+10C7F">not allocated (48)</span></div> <div class="dblk f4"><span title="show random character within codepoint range U+10C80 .. U+10CFF"><a href="?random-in-range=U+10C80,U+10CFF">Old Hungarian</a> (128) <a href="http://www.unicode.org/charts/PDF/U10C80.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+10D00 .. U+10D3F"><a href="?random-in-range=U+10D00,U+10D3F">Hanifi Rohingya</a> (64) <a href="http://www.unicode.org/charts/PDF/U10D00.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+10D40 .. U+10E5F">not allocated (288)</span></div> <div class="dblk f4"><span title="show random character within codepoint range U+10E60 .. U+10E7F"><a href="?random-in-range=U+10E60,U+10E7F">Rumi Numeral Symbols</a> (32) <a href="http://www.unicode.org/charts/PDF/U10E60.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+10E80 .. U+10EFF">not allocated (128)</span></div> <div class="dblk f4"><span title="show random character within codepoint range U+10F00 .. U+10F2F"><a href="?random-in-range=U+10F00,U+10F2F">Old Sogdian</a> (48) <a href="http://www.unicode.org/charts/PDF/U10F00.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+10F30 .. U+10F6F"><a href="?random-in-range=U+10F30,U+10F6F">Sogdian</a> (64) <a href="http://www.unicode.org/charts/PDF/U10F30.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+10F70 .. U+10FDF">not allocated (112)</span></div> <div class="dblk f4"><span title="show random character within codepoint range U+10FE0 .. U+10FFF"><a href="?random-in-range=U+10FE0,U+10FFF">Elymaic</a> (32) <a href="http://www.unicode.org/charts/PDF/U10FE0.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+11000 .. U+1107F"><a href="?random-in-range=U+11000,U+1107F">Brahmi</a> (128) <a href="http://www.unicode.org/charts/PDF/U11000.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+11080 .. U+110CF"><a href="?random-in-range=U+11080,U+110CF">Kaithi</a> (80) <a href="http://www.unicode.org/charts/PDF/U11080.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+110D0 .. U+110FF"><a href="?random-in-range=U+110D0,U+110FF">Sora Sompeng</a> (48) <a href="http://www.unicode.org/charts/PDF/U110D0.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+11100 .. U+1114F"><a href="?random-in-range=U+11100,U+1114F">Chakma</a> (80) <a href="http://www.unicode.org/charts/PDF/U11100.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+11150 .. U+1117F"><a href="?random-in-range=U+11150,U+1117F">Mahajani</a> (48) <a href="http://www.unicode.org/charts/PDF/U11150.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+11180 .. U+111DF"><a href="?random-in-range=U+11180,U+111DF">Sharada</a> (96) <a href="http://www.unicode.org/charts/PDF/U11180.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+111E0 .. U+111FF"><a href="?random-in-range=U+111E0,U+111FF">Sinhala Archaic Numbers</a> (32) <a href="http://www.unicode.org/charts/PDF/U111E0.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+11200 .. U+1124F"><a href="?random-in-range=U+11200,U+1124F">Khojki</a> (80) <a href="http://www.unicode.org/charts/PDF/U11200.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+11250 .. U+1127F">not allocated (48)</span></div> <div class="dblk f4"><span title="show random character within codepoint range U+11280 .. U+112AF"><a href="?random-in-range=U+11280,U+112AF">Multani</a> (48) <a href="http://www.unicode.org/charts/PDF/U11280.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+112B0 .. U+112FF"><a href="?random-in-range=U+112B0,U+112FF">Khudawadi</a> (80) <a href="http://www.unicode.org/charts/PDF/U112B0.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+11300 .. U+1137F"><a href="?random-in-range=U+11300,U+1137F">Grantha</a> (128) <a href="http://www.unicode.org/charts/PDF/U11300.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+11380 .. U+113FF">not allocated (128)</span></div> <div class="dblk f2"><span title="show random character within codepoint range U+11400 .. U+1147F"><a href="?random-in-range=U+11400,U+1147F">Newa</a> (128) <a href="http://www.unicode.org/charts/PDF/U11400.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+11480 .. U+114DF"><a href="?random-in-range=U+11480,U+114DF">Tirhuta</a> (96) <a href="http://www.unicode.org/charts/PDF/U11480.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+114E0 .. U+1157F">not allocated (160)</span></div> <div class="dblk f4"><span title="show random character within codepoint range U+11580 .. U+115FF"><a href="?random-in-range=U+11580,U+115FF">Siddham</a> (128) <a href="http://www.unicode.org/charts/PDF/U11580.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+11600 .. U+1165F"><a href="?random-in-range=U+11600,U+1165F">Modi</a> (96) <a href="http://www.unicode.org/charts/PDF/U11600.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+11660 .. U+1167F"><a href="?random-in-range=U+11660,U+1167F">Mongolian Supplement</a> (32) <a href="http://www.unicode.org/charts/PDF/U11660.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+11680 .. U+116CF"><a href="?random-in-range=U+11680,U+116CF">Takri</a> (80) <a href="http://www.unicode.org/charts/PDF/U11680.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+116D0 .. U+116FF">not allocated (48)</span></div> <div class="dblk f4"><span title="show random character within codepoint range U+11700 .. U+1173F"><a href="?random-in-range=U+11700,U+1173F">Ahom</a> (64) <a href="http://www.unicode.org/charts/PDF/U11700.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+11740 .. U+117FF">not allocated (192)</span></div> <div class="dblk f2"><span title="show random character within codepoint range U+11800 .. U+1184F"><a href="?random-in-range=U+11800,U+1184F">Dogra</a> (80) <a href="http://www.unicode.org/charts/PDF/U11800.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+11850 .. U+1189F">not allocated (80)</span></div> <div class="dblk f2"><span title="show random character within codepoint range U+118A0 .. U+118FF"><a href="?random-in-range=U+118A0,U+118FF">Warang Citi</a> (96) <a href="http://www.unicode.org/charts/PDF/U118A0.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+11900 .. U+1199F">not allocated (160)</span></div> <div class="dblk f4"><span title="show random character within codepoint range U+119A0 .. U+119FF"><a href="?random-in-range=U+119A0,U+119FF">Nandinagari</a> (96) <a href="http://www.unicode.org/charts/PDF/U119A0.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+11A00 .. U+11A4F"><a href="?random-in-range=U+11A00,U+11A4F">Zanabazar Square</a> (80) <a href="http://www.unicode.org/charts/PDF/U11A00.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+11A50 .. U+11AAF"><a href="?random-in-range=U+11A50,U+11AAF">Soyombo</a> (96) <a href="http://www.unicode.org/charts/PDF/U11A50.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+11AB0 .. U+11ABF">not allocated (16)</span></div> <div class="dblk f2"><span title="show random character within codepoint range U+11AC0 .. U+11AFF"><a href="?random-in-range=U+11AC0,U+11AFF">Pau Cin Hau</a> (64) <a href="http://www.unicode.org/charts/PDF/U11AC0.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+11B00 .. U+11BFF">not allocated (256)</span></div> <div class="dblk f4"><span title="show random character within codepoint range U+11C00 .. U+11C6F"><a href="?random-in-range=U+11C00,U+11C6F">Bhaiksuki</a> (112) <a href="http://www.unicode.org/charts/PDF/U11C00.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+11C70 .. U+11CBF"><a href="?random-in-range=U+11C70,U+11CBF">Marchen</a> (80) <a href="http://www.unicode.org/charts/PDF/U11C70.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+11CC0 .. U+11CFF">not allocated (64)</span></div> <div class="dblk f2"><span title="show random character within codepoint range U+11D00 .. U+11D5F"><a href="?random-in-range=U+11D00,U+11D5F">Masaram Gondi</a> (96) <a href="http://www.unicode.org/charts/PDF/U11D00.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+11D60 .. U+11DAF"><a href="?random-in-range=U+11D60,U+11DAF">Gunjala Gondi</a> (80) <a href="http://www.unicode.org/charts/PDF/U11D60.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+11DB0 .. U+11EDF">not allocated (304)</span></div> <div class="dblk f4"><span title="show random character within codepoint range U+11EE0 .. U+11EFF"><a href="?random-in-range=U+11EE0,U+11EFF">Makasar</a> (32) <a href="http://www.unicode.org/charts/PDF/U11EE0.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+11F00 .. U+11FBF">not allocated (192)</span></div> <div class="dblk f1"><span title="show random character within codepoint range U+11FC0 .. U+11FFF"><a href="?random-in-range=U+11FC0,U+11FFF">Tamil Supplement</a> (64) <a href="http://www.unicode.org/charts/PDF/U11FC0.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+12000 .. U+123FF"><a href="?random-in-range=U+12000,U+123FF">Cuneiform</a> (1024) <a href="http://www.unicode.org/charts/PDF/U12000.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+12400 .. U+1247F"><a href="?random-in-range=U+12400,U+1247F">Cuneiform Numbers and Punctuation</a> (128) <a href="http://www.unicode.org/charts/PDF/U12400.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+12480 .. U+1254F"><a href="?random-in-range=U+12480,U+1254F">Early Dynastic Cuneiform</a> (208) <a href="http://www.unicode.org/charts/PDF/U12480.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+12550 .. U+12FFF">not allocated (2736)</span></div> <div class="dblk f4"><span title="show random character within codepoint range U+13000 .. U+1342F"><a href="?random-in-range=U+13000,U+1342F">Egyptian Hieroglyphs</a> (1072) <a href="http://www.unicode.org/charts/PDF/U13000.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+13430 .. U+1343F"><a href="?random-in-range=U+13430,U+1343F">Egyptian Hieroglyph Format Controls</a> (16) <a href="http://www.unicode.org/charts/PDF/U13430.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+13440 .. U+143FF">not allocated (4032)</span></div> <div class="dblk f4"><span title="show random character within codepoint range U+14400 .. U+1467F"><a href="?random-in-range=U+14400,U+1467F">Anatolian Hieroglyphs</a> (640) <a href="http://www.unicode.org/charts/PDF/U14400.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+14680 .. U+167FF">not allocated (8576)</span></div> <div class="dblk f2"><span title="show random character within codepoint range U+16800 .. U+16A3F"><a href="?random-in-range=U+16800,U+16A3F">Bamum Supplement</a> (576) <a href="http://www.unicode.org/charts/PDF/U16800.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+16A40 .. U+16A6F"><a href="?random-in-range=U+16A40,U+16A6F">Mro</a> (48) <a href="http://www.unicode.org/charts/PDF/U16A40.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+16A70 .. U+16ACF">not allocated (96)</span></div> <div class="dblk f4"><span title="show random character within codepoint range U+16AD0 .. U+16AFF"><a href="?random-in-range=U+16AD0,U+16AFF">Bassa Vah</a> (48) <a href="http://www.unicode.org/charts/PDF/U16AD0.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+16B00 .. U+16B8F"><a href="?random-in-range=U+16B00,U+16B8F">Pahawh Hmong</a> (144) <a href="http://www.unicode.org/charts/PDF/U16B00.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+16B90 .. U+16E3F">not allocated (688)</span></div> <div class="dblk f2"><span title="show random character within codepoint range U+16E40 .. U+16E9F"><a href="?random-in-range=U+16E40,U+16E9F">Medefaidrin</a> (96) <a href="http://www.unicode.org/charts/PDF/U16E40.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+16EA0 .. U+16EFF">not allocated (96)</span></div> <div class="dblk f2"><span title="show random character within codepoint range U+16F00 .. U+16F9F"><a href="?random-in-range=U+16F00,U+16F9F">Miao</a> (160) <a href="http://www.unicode.org/charts/PDF/U16F00.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+16FA0 .. U+16FDF">not allocated (64)</span></div> <div class="dblk f1"><span title="show random character within codepoint range U+16FE0 .. U+16FFF"><a href="?random-in-range=U+16FE0,U+16FFF">Ideographic Symbols and Punctuation</a> (32) <a href="http://www.unicode.org/charts/PDF/U16FE0.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+17000 .. U+187FF"><a href="?random-in-range=U+17000,U+187FF">Tangut</a> (6144) <a href="http://www.unicode.org/charts/PDF/U17000.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+18800 .. U+18AFF"><a href="?random-in-range=U+18800,U+18AFF">Tangut Components</a> (768) <a href="http://www.unicode.org/charts/PDF/U18800.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+18B00 .. U+1AFFF">not allocated (9472)</span></div> <div class="dblk f2"><span title="show random character within codepoint range U+1B000 .. U+1B0FF"><a href="?random-in-range=U+1B000,U+1B0FF">Kana Supplement</a> (256) <a href="http://www.unicode.org/charts/PDF/U1B000.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+1B100 .. U+1B12F"><a href="?random-in-range=U+1B100,U+1B12F">Kana Extended-A</a> (48) <a href="http://www.unicode.org/charts/PDF/U1B100.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+1B130 .. U+1B16F"><a href="?random-in-range=U+1B130,U+1B16F">Small Kana Extension</a> (64) <a href="http://www.unicode.org/charts/PDF/U1B130.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+1B170 .. U+1B2FF"><a href="?random-in-range=U+1B170,U+1B2FF">Nushu</a> (400) <a href="http://www.unicode.org/charts/PDF/U1B170.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+1B300 .. U+1BBFF">not allocated (2304)</span></div> <div class="dblk f2"><span title="show random character within codepoint range U+1BC00 .. U+1BC9F"><a href="?random-in-range=U+1BC00,U+1BC9F">Duployan</a> (160) <a href="http://www.unicode.org/charts/PDF/U1BC00.pdf">pdf</a></span></div> <div class="dblk f64"><span title="show random character within codepoint range U+1BCA0 .. U+1BCAF"><a href="?random-in-range=U+1BCA0,U+1BCAF">Shorthand Format Controls</a> (16) <a href="http://www.unicode.org/charts/PDF/U1BCA0.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+1BCB0 .. U+1CFFF">not allocated (4944)</span></div> <br/><br/> <div class="dblk f4"><span title="show random character within codepoint range U+1D000 .. U+1D0FF"><a href="?random-in-range=U+1D000,U+1D0FF">Byzantine Musical Symbols</a> (256) <a href="http://www.unicode.org/charts/PDF/U1D000.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+1D100 .. U+1D1FF"><a href="?random-in-range=U+1D100,U+1D1FF">Musical Symbols</a> (256) <a href="http://www.unicode.org/charts/PDF/U1D100.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+1D200 .. U+1D24F"><a href="?random-in-range=U+1D200,U+1D24F">Ancient Greek Musical Notation</a> (80) <a href="http://www.unicode.org/charts/PDF/U1D200.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+1D250 .. U+1D2DF">not allocated (144)</span></div> <div class="dblk f4"><span title="show random character within codepoint range U+1D2E0 .. U+1D2FF"><a href="?random-in-range=U+1D2E0,U+1D2FF">Mayan Numerals</a> (32) <a href="http://www.unicode.org/charts/PDF/U1D2E0.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+1D300 .. U+1D35F"><a href="?random-in-range=U+1D300,U+1D35F">Tai Xuan Jing Symbols</a> (96) <a href="http://www.unicode.org/charts/PDF/U1D300.pdf">pdf</a></span></div> <div class="dblk f4"><span title="show random character within codepoint range U+1D360 .. U+1D37F"><a href="?random-in-range=U+1D360,U+1D37F">Counting Rod Numerals</a> (32) <a href="http://www.unicode.org/charts/PDF/U1D360.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+1D380 .. U+1D3FF">not allocated (128)</span></div> <div class="dblk f32"><span title="show random character within codepoint range U+1D400 .. U+1D7FF"><a href="?random-in-range=U+1D400,U+1D7FF">Mathematical Alphanumeric Symbols</a> (1024) <a href="http://www.unicode.org/charts/PDF/U1D400.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+1D800 .. U+1DAAF"><a href="?random-in-range=U+1D800,U+1DAAF">Sutton SignWriting</a> (688) <a href="http://www.unicode.org/charts/PDF/U1D800.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+1DAB0 .. U+1DFFF">not allocated (1360)</span></div> <div class="dblk f4"><span title="show random character within codepoint range U+1E000 .. U+1E02F"><a href="?random-in-range=U+1E000,U+1E02F">Glagolitic Supplement</a> (48) <a href="http://www.unicode.org/charts/PDF/U1E000.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+1E030 .. U+1E0FF">not allocated (208)</span></div> <div class="dblk f2"><span title="show random character within codepoint range U+1E100 .. U+1E14F"><a href="?random-in-range=U+1E100,U+1E14F">Nyiakeng Puachue Hmong</a> (80) <a href="http://www.unicode.org/charts/PDF/U1E100.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+1E150 .. U+1E2BF">not allocated (368)</span></div> <div class="dblk f2"><span title="show random character within codepoint range U+1E2C0 .. U+1E2FF"><a href="?random-in-range=U+1E2C0,U+1E2FF">Wancho</a> (64) <a href="http://www.unicode.org/charts/PDF/U1E2C0.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+1E300 .. U+1E7FF">not allocated (1280)</span></div> <div class="dblk f1"><span title="show random character within codepoint range U+1E800 .. U+1E8DF"><a href="?random-in-range=U+1E800,U+1E8DF">Mende Kikakui</a> (224) <a href="http://www.unicode.org/charts/PDF/U1E800.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+1E8E0 .. U+1E8FF">not allocated (32)</span></div> <div class="dblk f1"><span title="show random character within codepoint range U+1E900 .. U+1E95F"><a href="?random-in-range=U+1E900,U+1E95F">Adlam</a> (96) <a href="http://www.unicode.org/charts/PDF/U1E900.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+1E960 .. U+1EC6F">not allocated (784)</span></div> <div class="dblk f4"><span title="show random character within codepoint range U+1EC70 .. U+1ECBF"><a href="?random-in-range=U+1EC70,U+1ECBF">Indic Siyaq Numbers</a> (80) <a href="http://www.unicode.org/charts/PDF/U1EC70.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+1ECC0 .. U+1ECFF">not allocated (64)</span></div> <div class="dblk f4"><span title="show random character within codepoint range U+1ED00 .. U+1ED4F"><a href="?random-in-range=U+1ED00,U+1ED4F">Ottoman Siyaq Numbers</a> (80) <a href="http://www.unicode.org/charts/PDF/U1ED00.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+1ED50 .. U+1EDFF">not allocated (176)</span></div> <div class="dblk f2"><span title="show random character within codepoint range U+1EE00 .. U+1EEFF"><a href="?random-in-range=U+1EE00,U+1EEFF">Arabic Mathematical Alphabetic Symbols</a> (256) <a href="http://www.unicode.org/charts/PDF/U1EE00.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+1EF00 .. U+1EFFF">not allocated (256)</span></div> <br/><br/> <div class="dblk f32"><span title="show random character within codepoint range U+1F000 .. U+1F02F"><a href="?random-in-range=U+1F000,U+1F02F">Mahjong Tiles</a> (48) <a href="http://www.unicode.org/charts/PDF/U1F000.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+1F030 .. U+1F09F"><a href="?random-in-range=U+1F030,U+1F09F">Domino Tiles</a> (112) <a href="http://www.unicode.org/charts/PDF/U1F030.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+1F0A0 .. U+1F0FF"><a href="?random-in-range=U+1F0A0,U+1F0FF">Playing Cards</a> (96) <a href="http://www.unicode.org/charts/PDF/U1F0A0.pdf">pdf</a></span></div> <br/><br/> <div class="dblk f1"><span title="show random character within codepoint range U+1F100 .. U+1F1FF"><a href="?random-in-range=U+1F100,U+1F1FF">Enclosed Alphanumeric Supplement</a> (256) <a href="http://www.unicode.org/charts/PDF/U1F100.pdf">pdf</a></span></div> <div class="dblk f1"><span title="show random character within codepoint range U+1F200 .. U+1F2FF"><a href="?random-in-range=U+1F200,U+1F2FF">Enclosed Ideographic Supplement</a> (256) <a href="http://www.unicode.org/charts/PDF/U1F200.pdf">pdf</a></span></div> <br/><br/> <div class="dblk f32"><span title="show random character within codepoint range U+1F300 .. U+1F5FF"><a href="?random-in-range=U+1F300,U+1F5FF">Miscellaneous Symbols and Pictographs</a> (768) <a href="http://www.unicode.org/charts/PDF/U1F300.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+1F600 .. U+1F64F"><a href="?random-in-range=U+1F600,U+1F64F">Emoticons</a> (80) <a href="http://www.unicode.org/charts/PDF/U1F600.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+1F650 .. U+1F67F"><a href="?random-in-range=U+1F650,U+1F67F">Ornamental Dingbats</a> (48) <a href="http://www.unicode.org/charts/PDF/U1F650.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+1F680 .. U+1F6FF"><a href="?random-in-range=U+1F680,U+1F6FF">Transport and Map Symbols</a> (128) <a href="http://www.unicode.org/charts/PDF/U1F680.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+1F700 .. U+1F77F"><a href="?random-in-range=U+1F700,U+1F77F">Alchemical Symbols</a> (128) <a href="http://www.unicode.org/charts/PDF/U1F700.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+1F780 .. U+1F7FF"><a href="?random-in-range=U+1F780,U+1F7FF">Geometric Shapes Extended</a> (128) <a href="http://www.unicode.org/charts/PDF/U1F780.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+1F800 .. U+1F8FF"><a href="?random-in-range=U+1F800,U+1F8FF">Supplemental Arrows-C</a> (256) <a href="http://www.unicode.org/charts/PDF/U1F800.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+1F900 .. U+1F9FF"><a href="?random-in-range=U+1F900,U+1F9FF">Supplemental Symbols and Pictographs</a> (256) <a href="http://www.unicode.org/charts/PDF/U1F900.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+1FA00 .. U+1FA6F"><a href="?random-in-range=U+1FA00,U+1FA6F">Chess Symbols</a> (112) <a href="http://www.unicode.org/charts/PDF/U1FA00.pdf">pdf</a></span></div> <div class="dblk f32"><span title="show random character within codepoint range U+1FA70 .. U+1FAFF"><a href="?random-in-range=U+1FA70,U+1FAFF">Symbols and Pictographs Extended-A</a> (144) <a href="http://www.unicode.org/charts/PDF/U1FA70.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+1FB00 .. U+1FFFF">not allocated (1280)</span></div> <br/><br/><br/> <hr/><b>SIP - Supplemental Ideographic Plane</b>:<br/> <div class="dblk f2"><span title="show random character within codepoint range U+20000 .. U+2A6DF"><a href="?random-in-range=U+20000,U+2A6DF">CJK Unified Ideographs Extension B</a> (42720) <a href="http://www.unicode.org/charts/PDF/U20000.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+2A6E0 .. U+2A6FF">not allocated (32)</span></div> <div class="dblk f2"><span title="show random character within codepoint range U+2A700 .. U+2B73F"><a href="?random-in-range=U+2A700,U+2B73F">CJK Unified Ideographs Extension C</a> (4160) <a href="http://www.unicode.org/charts/PDF/U2A700.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+2B740 .. U+2B81F"><a href="?random-in-range=U+2B740,U+2B81F">CJK Unified Ideographs Extension D</a> (224) <a href="http://www.unicode.org/charts/PDF/U2B740.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+2B820 .. U+2CEAF"><a href="?random-in-range=U+2B820,U+2CEAF">CJK Unified Ideographs Extension E</a> (5776) <a href="http://www.unicode.org/charts/PDF/U2B820.pdf">pdf</a></span></div> <div class="dblk f2"><span title="show random character within codepoint range U+2CEB0 .. U+2EBEF"><a href="?random-in-range=U+2CEB0,U+2EBEF">CJK Unified Ideographs Extension F</a> (7488) <a href="http://www.unicode.org/charts/PDF/U2CEB0.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+2EBF0 .. U+2F7FF">not allocated (3088)</span></div> <div class="dblk f1"><span title="show random character within codepoint range U+2F800 .. U+2FA1F"><a href="?random-in-range=U+2F800,U+2FA1F">CJK Compatibility Ideographs Supplement</a> (544) <a href="http://www.unicode.org/charts/PDF/U2F800.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+2FA20 .. U+2FFFF">not allocated (1504)</span></div> <br/><br/><br/> <hr/><b>TIP - Tertiary Ideographic Plane</b>:<br/> <div class="dblk f4"><span title="show random character within codepoint range U+30000 .. U+3134F"><a href="?random-in-range=U+30000,U+3134F">CJK Unified Ideographs Extension G</a> (4944) <a href="http://www.unicode.org/charts/PDF/U30000.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+31350 .. U+3FFFF">not allocated (60592)</span></div> <br/><br/><br/> <hr/><b>Planes 4 through 13 - not allocated</b>:<br/> <div class="dblk f256"><span title="codepoint range U+40000 .. U+4FFFF">plane 4 (not allocated) (65536)</span></div> <div class="dblk f256"><span title="codepoint range U+50000 .. U+5FFFF">plane 5 (not allocated) (65536)</span></div> <div class="dblk f256"><span title="codepoint range U+60000 .. U+6FFFF">plane 6 (not allocated) (65536)</span></div> <div class="dblk f256"><span title="codepoint range U+70000 .. U+7FFFF">plane 7 (not allocated) (65536)</span></div> <div class="dblk f256"><span title="codepoint range U+80000 .. U+8FFFF">plane 8 (not allocated) (65536)</span></div> <div class="dblk f256"><span title="codepoint range U+90000 .. U+9FFFF">plane 9 (not allocated) (65536)</span></div> <div class="dblk f256"><span title="codepoint range U+A0000 .. U+AFFFF">plane 10 (not allocated) (65536)</span></div> <div class="dblk f256"><span title="codepoint range U+B0000 .. U+BFFFF">plane 11 (not allocated) (65536)</span></div> <div class="dblk f256"><span title="codepoint range U+C0000 .. U+CFFFF">plane 12 (not allocated) (65536)</span></div> <div class="dblk f256"><span title="codepoint range U+D0000 .. U+DFFFF">plane 13 (not allocated) (65536)</span></div> <br/><br/><br/> <hr/><b>SSP - Supplemental Special-purpose Plane</b>:<br/> <div class="dblk f32"><span title="show random character within codepoint range U+E0000 .. U+E007F"><a href="?random-in-range=U+E0000,U+E007F">Tags</a> (128) <a href="http://www.unicode.org/charts/PDF/UE0000.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+E0080 .. U+E00FF">not allocated (128)</span></div> <div class="dblk f32"><span title="show random character within codepoint range U+E0100 .. U+E01EF"><a href="?random-in-range=U+E0100,U+E01EF">Variation Selectors Supplement</a> (240) <a href="http://www.unicode.org/charts/PDF/UE0100.pdf">pdf</a></span></div> <div class="dblk f256"><span title="codepoint range U+E01F0 .. U+EFFFF">not allocated (65040)</span></div> <br/><br/><br/> <hr/><b>PUA-A - Private Use Area A</b>:<br/> <div class="dblk f128"><span title="show random character within codepoint range U+F0000 .. U+FFFFF"><a href="?random-in-range=U+F0000,U+FFFFF">Supplementary Private Use Area-A</a> (65536) <a href="http://www.unicode.org/charts/PDF/UF0000.pdf">pdf</a></span></div> <br/><br/><br/> <hr/><b>PUA-B - Private Use Area B</b>:<br/> <div class="dblk f128"><span title="show random character within codepoint range U+100000 .. U+10FFFF"><a href="?random-in-range=U+100000,U+10FFFF">Supplementary Private Use Area-B</a> (65536) <a href="http://www.unicode.org/charts/PDF/U100000.pdf">pdf</a></span></div> <br/><br/><br/> <hr/> <p> Note that of the ~1.1 million codepoints under U+10FFFF (the current cap), only ~140K are general-purpose graphic codepoints (about half in BMP), ~130K are private use (with no defined characters), and ~830K are unused. </p><p> The grouping used above is somewhat arbitrary, but looks halfway sensible </p> </td></tr> <tr><th colspan="2" class="roundedfooter"></th></tr> </table> <!-- db connection 0.0 ms counter 1.7 ms input interpretation 0.2 ms name search 0.0 ms character image 0.0 ms characters nearby 0.3 ms confusables 0.3 ms unidata 0.1 ms links 0.0 ms values and year 0.3 ms character properties 0.0 ms string props 0.5 ms named_ent 0.0 ms alt 0.0 ms string encoding 0.1 ms emoji (TODO) 0.0 ms CJK (TODO) 0.0 ms font (TODO) 0.0 ms blocks and planes 1.2 ms TOTAL 4.7 ms --> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10