UTF-8 Cyrillic Supplement

Multi tool use <!--
main_leaderboard, all: [728,90][970,90][320,50][468,60]
-->
UTF-8 Cyrillic Supplement
❮ Previous
Next ❯
Range: Decimal 1280-1327. Hex 0500-052F.
If you want any of these characters displayed in HTML, you can use the HTML entity found in the table below.
If the character does not have an HTML entity, you can use the decimal (dec) or hexadecimal (hex) reference.
Example
<p>I will display Ԁ</p>
<p>I will display Ԁ</p>
Will display as:
I will display Ԁ
I will display Ԁ
Try it Yourself »
Char | Dec | Hex | Entity | Name |
---|
Ԁ | 1280 | 0500 | | CYRILLIC CAPITAL LETTER KOMI DE |
ԁ | 1281 | 0501 | | CYRILLIC SMALL LETTER KOMI DE |
Ԃ | 1282 | 0502 | | CYRILLIC CAPITAL LETTER KOMI DJE |
ԃ | 1283 | 0503 | | CYRILLIC SMALL LETTER KOMI DJE |
Ԅ | 1284 | 0504 | | CYRILLIC CAPITAL LETTER KOMI ZJE |
ԅ | 1285 | 0505 | | CYRILLIC SMALL LETTER KOMI ZJE |
Ԇ | 1286 | 0506 | | CYRILLIC CAPITAL LETTER KOMI DZJE |
ԇ | 1287 | 0507 | | CYRILLIC SMALL LETTER KOMI DZJE |
Ԉ | 1288 | 0508 | | CYRILLIC CAPITAL LETTER KOMI LJE |
ԉ | 1289 | 0509 | | CYRILLIC SMALL LETTER KOMI LJE |
Ԋ | 1290 | 050A | | CYRILLIC CAPITAL LETTER KOMI NJE |
ԋ | 1291 | 050B | | CYRILLIC SMALL LETTER KOMI NJE |
Ԍ | 1292 | 050C | | CYRILLIC CAPITAL LETTER KOMI SJE |
ԍ | 1293 | 050D | | CYRILLIC SMALL LETTER KOMI SJE |
Ԏ | 1294 | 050E | | CYRILLIC CAPITAL LETTER KOMI TJE |
ԏ | 1295 | 050F | | CYRILLIC SMALL LETTER KOMI TJE |
Ԕ | 1300 | 0514 | | CYRILLIC CAPITAL LETTER LHA |
ԕ | 1301 | 0515 | | CYRILLIC SMALL LETTER LHA |
Ԗ | 1302 | 0516 | | CYRILLIC CAPITAL LETTER RHA |
ԗ | 1303 | 0517 | | CYRILLIC SMALL LETTER RHA |
Ԙ | 1304 | 0518 | | CYRILLIC CAPITAL LETTER YAE |
ԙ | 1305 | 0519 | | CYRILLIC SMALL LETTER YAE |
Ԛ | 1306 | 051A | | CYRILLIC CAPITAL LETTER QA |
ԛ | 1307 | 051B | | CYRILLIC SMALL LETTER QA |
Ԝ | 1308 | 051C | | CYRILLIC CAPITAL LETTER WE |
ԝ | 1309 | 051D | | CYRILLIC SMALL LETTER WE |
Ԟ | 1310 | 051E | | CYRILLIC CAPITAL LETTER ALEUT KA |
ԟ | 1311 | 051F | | CYRILLIC SMALL LETTER ALEUT KA |
Ԡ | 1312 | 0520 | | CYRILLIC CAPITAL LETTER EL WITH MIDDLE HOOK |
ԡ | 1313 | 0521 | | CYRILLIC SMALL LETTER EL WITH MIDDLE HOOK |
Ԣ | 1314 | 0522 | | CYRILLIC CAPITAL LETTER EN WITH MIDDLE HOOK |
ԣ | 1315 | 0523 | | CYRILLIC SMALL LETTER EN WITH MIDDLE HOOK |
Ԥ | 1316 | 0524 | | CYRILLIC CAPITAL LETTER PE WITH DESCENDER |
ԥ | 1317 | 0525 | | CYRILLIC SMALL LETTER PE WITH DESCENDER |
Ԧ | 1318 | 0526 | | CYRILLIC CAPITAL LETTER SHHA WITH DESCENDER |
ԧ | 1319 | 0527 | | CYRILLIC SMALL LETTER SHHA WITH DESCENDER |
Ԩ | 1320 | 0528 | | |
ԩ | 1321 | 0529 | | |
Ԫ | 1322 | 052A | | |
ԫ | 1323 | 052B | | |
Ԭ | 1324 | 052C | | |
ԭ | 1325 | 052D | | |
Ԯ | 1326 | 052E | | |
ԯ | 1327 | 052F | | |
❮ Previous
Next ❯
qTh4VPxW3
Popular posts from this blog
Clash Royale CLAN TAG #URR8PPP .everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty margin-bottom:0; up vote 2 down vote favorite This is my client code: (My server is very similar at the moment but I will upload it below this one just in case somebody wants to run it) #include <SFML/Graphics.hpp> #include <SFML/Network.hpp> #include <thread> int main() sf::RenderWindow main_win(sf::VideoMode(800, 800), "Chatcy!"); main_win.setPosition(sf::Vector2i(sf::VideoMode::getDesktopMode().width/2 -400, sf::VideoMode::getDesktopMode().height/2 -400)); main_win.setVerticalSyncEnabled(true); //chatcy logo sf::Texture chatcy; chatcy.loadFromFile("image_chatcy.png"); sf::Sprite logo; logo.setTexture(chatcy); //200x800 //font sf::Font font; font.loadFromFile("FreeSerif.ttf"); //name sf::String name("Client"); name += ": "; //text input area and background sf::RectangleShape in_backg...
Clash Royale CLAN TAG #URR8PPP .everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty margin-bottom:0; up vote 1 down vote favorite My goal is to create a compact function that can create a JSON Like object from JSON string. I want a function with a small footprint that I or anyone who wants to use it, can simply paste into a module and use. At 61 lines of code, I am happy with its size and portability. Here is an image of JSON Object created from string data using a ScriptControl . Although the Locals Window displays the properties and values correctly, the object itself is extremely difficult to work with. This image shows an object created using getJSONCollection . Because it is made of VBA Collections and Arrays, it is very easy to work with. Option Explicit Private Function getJSONCollection(ByVal Value As Variant, Optional ScriptEngine As Object) As Variant Const DELIMITER As String = "||" Dim col As Collection, JSON As Object, KeyNam...
Clash Royale CLAN TAG #URR8PPP .everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty margin-bottom:0; up vote 4 down vote favorite I have made a little Quiz Game in Python. This was my first experience in programming Gui's in Python with Tkinter. In general, I do not have much knowledge about graphic programming and have acquired the necessary knowledge through skimming internet articles and try and error. Accordingly, the code looks like sciolism and semi-professional structuring. That should be improved. I will not be able to avoid a good basic tutorial on graphic programming, I think. However, if you have tips for me how to improve the style I would be grateful to hear them. from tkinter import Tk, Frame, Label, Button from time import sleep class Question: def __init__(self, question, answers, correctLetter): self.question = question self.answers = answers self.correctLetter = correctLetter def check(self, letter, view): global right if...