مع SerpClix أصبح كسب المال أمرا سهلا

الأفراد المهتمين بكسب المال من خلال النقر على الروابط

يستخدم العد التنازلي في مواقع الويب في العروض التقديمية مثل تخفيضات رأس السنة ويستخدم بكثرة في تخفيضات الاستضافات وخاصة العروض التقديمية الخاصة بالمنتجات كما يمكننا استخدامه في اي مجال في الويب حسب الحاجة اليه

مثال حي

{{ displaydays }}
الايام
{{ displayhours }}
الساعات
{{ displayminutes }}
الدقائق
{{ displayseconds }}
الثواني
انتهى الوقت


الكود كامل للمثال في الاعلى مع الشرح داخل الكود



<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" /> 
<!--   خاصية التجاوب مع جميع الاجهزة  --> 
<meta name="viewport" content="width=device-width, initial-scale=1.0"> 
<!-- استدعاء مكتبة الخطوط من جوجل -->
<link href="https://fonts.googleapis.com/css2?family=Lemonada:wght@300&display=swap" rel="stylesheet">
<!-- استدعاء مكتبة فيو الإصدار الثالث -->
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
</head>
<body>

<!--html countdown html-->  
<div id="roninge"> 
      <div class="container"> 
    
            <div  class=" section">
              <!--html تظهار الوقت بالعد التنازلي html-->  
              <div v-if="showtimer" class="countdown-cont">
                <div class="countdown-block">
                <!-- عرض متغير الأيام -->
                  <div class="countdown-digit">{{ displaydays }}</div>
                  <div class="countdown-label">الايام</div>
                </div>
                <div class="countdown-block">
                  <div data-js="countdown-hour" class="countdown-digit">
                  <!--عرض متغير الساعات -->
                    {{ displayhours }}
                  </div>
                  <div class="countdown-label"> الساعات</div>
                </div> 
                <div class="countdown-block">
                <!-- عرض متغير الدقائق -->
                  <div class="countdown-digit">{{ displayminutes }}</div>
                  <div class="countdown-label"> الدقائق</div>
                </div>
                <div class="countdown-block">
                <!-- عرض متغير الثواني -->
                  <div class="countdown-digit">{{ displayseconds }}</div>
                  <div class="countdown-label">الثواني</div>
                </div>
              </div>
              <!--html اظهار رسالة الوقت انتهى html-->  
              <h1 v-if="expired" class="countdown-endtext">
               انتهى الوقت
              </h1>
            </div> 
          </div>
  </div>
<!--script javascript script-->  
<script>
  const Counter = {  
  data() {
    return { 
    //اعلان المتغيرات التي ستحمل قيمة الاوقات
      expired: false,
      showtimer: false,
      displaydays: 0,
      displayhours: 0,
      displayminutes: 0,
      displayseconds: 0,
    };
  },
  mounted() {
// تشغييل دالة اظهار العد التنازلي
    this.showroninge();
  },
  methods: {   
//اضافة رقم صفر اذا كان الرقم فردي
    shack: function(num) {
      return num < 10 ? "0" + num : num;
    },

//دالة اظهار العد التنازلي
    showroninge: function() {
    
// تحديث العد التنازلي كل ثانية
    const timer = setInterval(() => {
        
// الحصول على الوقت منذ بدايته سنة 1970 الى يومنا بالملي ثانية
    const now = new Date().getTime();
        
// حدد التاريخ الذي نقوم بالعد التنازلي إليه 
   const end = new Date("2024-03-11").getTime();
        
// ابحث عن المسافة بين الآن وتاريخ العد التنازلي        
   const distance = end - now;
// إذا انتهى العد التنازلي ،  أوقف المؤقت واطبع رسالة انتهى الوقت      
    if (distance < 0) {
          clearInterval(timer);
          this.expired = true;
          this.showtimer = false;
          return;
        }

// حسابات الوقت للأيام والساعات والدقائق والثواني
    const days = Math.floor(distance / 864e5);
    const hours = Math.floor((distance % 864e5) / 36e5);
    const minutes = Math.floor((distance % 36e5) / 6e4);
    const seconds = Math.floor((distance % 6e4) / 1e3); 
      
 // ارسال القيم الى متغيرات الداتة وعرضها في المتصفح
    this.displayminutes = this.shack(minutes);
    this.displayseconds = this.shack(seconds);
    this.displayhours   = this.shack(hours);
    this.displaydays    = this.shack(days);
//اخفاء نص انتهى الوقت 
    this.expired        = false;
//اضهار بلوك الوقت 
    this.showtimer      = true;
      }, 1000);
    },
  },
 }
Vue.createApp(Counter).mount('#roninge');
</script>  
 <!--style css style-->
<style>
*{
   padding:0px;
   margin:0px;
   box-sizing:border-box;
   }
body{ 
 font-family: 'Lemonada', cursive; 
} 
.countdown-cont {
    display: grid;
    grid-template-columns: repeat(4 , 1fr);
    gap: 15px;
    text-align: center;
    max-width: 660px; 
    z-index:1;
    margin:auto;
    position:relative ;
  
}
.countdown-digit {
    font-size: xxx-large;
    background: #282c3473;
    border-radius: 6px;
    color: azure;
    margin-bottom: 5px;
    padding: 25px 10px;
    font-weight: bolder;
}
.countdown-label {    
    color:#fff;
}
.section{
  margin:3em 1.5em;
}
.container{ 
 background: linear-gradient(320deg, #42b983, #5077a0);
 padding: 25px 0px
    
}
.container img{
   width:100% ;
   height:auto;
}
@media (max-width:460px){
  .countdown-digit {
    font-size: x-large;  
    margin-bottom: 5px;
    padding: 15px 5px;
}
.section{
    margin:1em 1em;
}
}
</style>
</body>
</html> 

كيفية تكبير الصورة  How To Create an Image Zoom 

تعلم كيفية إنشاء تكبير الصورة.

 تكبير الصورة

 مرر الماوس فوق الصورة لتكبيرها:

الكود كامل والشرح في الفيديو اسفل

<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<body dir='rtl'>
<!--html-->
<div class="image-wrap">
    <div class="image">
       <img src="https://i.ibb.co/3mLyp3f/oranges.jpg">
    </div>
    <div class="image">
     <img src="https://i.ibb.co/3mLyp3f/oranges.jpg">
  </div>
</div>
<!--css-->
 <style>
   *{margin:0px; padding:px; box-sizing:border-box;}
   img{width:100%; height:auto;}
   .image-wrap{
     display:grid;
     grid-template-columns:repeat(2,1fr);
     gap:15px;
   }
   @media (max-width:460px){
     .image-wrap{ 
         grid-template-columns:repeat(1,1fr); 
     }
   }
   .image{
      width  :100%; 
      height :100%;
      background-size:100%;
      background-repeat:no-repeat;
      background-position:center; 
   
   }
   .image:hover{
      background-size:300%; 
   }
 </style>
 <!--script-->
 <script>
   const images = document.querySelectorAll(".image img"); 
   images.forEach((image)=>{
     const bgimg = image.src ;
     const parentimage = image.parentElement ;
     image.addEventListener("mousemove",(e) => {
          image.style.opacity = 0 ;
          parentimage.style.backgroundImage = "url('"+bgimg+"')";
          
          let width  = image.offsetWidth ;
          let height = image.offsetHeight ;
          let mouseX = e.offsetX ;
          let mouseY = e.offsetY ;
          let bgPosX = (mouseX / width * 100);
          let bgPosY = (mouseY / height * 100);
       
    parentimage.style.backgroundPosition = `${bgPosX}% ${bgPosY}%`;
           
});  
     
     
   });
 </script>
</body> 
</html>

مشاهدة الشرح بدون صوت

تخطيط الشبكة Grid Layout
توفر CSS Grid Layout Module نظام تخطيط قائم على الشبكة ، مع صفوف وأعمدة ، مما يسهل تصميم صفحات الويب دون الحاجة إلى استخدام  floats و positioning.
مثال عملي للتخطيط بالGrid 
الكود الكامل 

 
<!DOCTYPE html>
<html>
<head>
  <base href="https://test-app-host.web.app/img/">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/boxicons@latest/css/boxicons.min.css" /> 
  <link href="https://fonts.googleapis.com/css2?family=Almarai:wght@300&family=Cairo:wght@200&display=swap" rel="stylesheet">  
   <style>
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0; 
}
 body, button, div, html, input, label, p, select, span, textarea {
    
   font-family: 'Almarai', sans-serif;
   font-family: 'Cairo', sans-serif;
}
a {
    color: #2c3e50;
   text-decoration:none;
} 
ol, ul {
    padding: 0;
    margin: 0;
}
ul {
    list-style: none;
}
html, img {
    max-width: 100%;
}
span {
    font-style: inherit;
    font-weight: inherit;
}
img {
    height: auto;
    max-width: 100%;
}   
 .container{
     
    width: 100%;
    flex-grow: 1;
    margin: 0 auto;
    position: relative;
    width: auto;
     }
 
.product-center {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
    
}    
 .product {
    height: auto;
    background-color: #fff;
    box-shadow: 0 0.5rem 1.5rem rgb(0 0 0 / 15%);
    border-radius: 5px;
    transition: all .3s ease-in-out;
    padding: 0!important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}  
 .product:hover{
    box-shadow:0 .5rem 1.5rem rgba(0,0,0,.25)
  }
 .product:hover .product-header:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 1rem 1rem 0 0;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease-in-out;
    z-index: 1;
}     
 .product-header {
    position: relative;
    background-color: #f6f2f1;
    transition: all .3s ease-in-out;
    z-index: 0;
}
 .product-header img {
    width: 100%;
    height: auto;
 
}     
 .product-footer {
    padding: 10px;
   line-height:1.8rem;
}   
 .nav, .nav-b {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
}    
 .section {
    padding: 3rem 1.5rem;
}    
 .product:hover .icons {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}
 .product-header .icons {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%) scale(0);
    z-index: 2;
    opacity: 0;
    transition: all .5s ease-in-out;
}
 .product-header .icons span {
    background-color: #fff;
    color:#799;
    font-size: 1.7rem;
    display: block;
    border-radius:  50%  ; 
    padding: 0.8rem 0.8rem; 
    cursor: pointer;
    transition: all .3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}
 .product-header .icons span:not(:last-child) {
    margin-bottom: 1rem;
}
 .product-header .icons span:hover {
    background-color: #ff7d9d;
    color: #fff;
}    
 .product-header .icons span i {
    transition: all 500ms ease-in-out;
}
 .product-header .icons a {
    display: block;
    margin-bottom: 1rem;
}
 .rating {
    color: #ffc107;
    font-size:18px;
}
 .tag:not(body).is-danger {
    background-color: #f14668;
    color: #fff;
    padding-left: 0.75em;
    padding-right: 0.75em;
    border-radius:3px;
      font-size: 12px;
}
  
@media screen and (min-width: 1408px){
.container:not(.is-max-desktop):not(.is-max-widescreen) {
    max-width: 1344px;
}  }    
@media screen and (min-width: 1216px){
     .container:not(.is-max-desktop) {
    max-width: 1152px;
}
     }
@media only screen and (min-width: 1200px){
.container {
    max-width: 1170px;
}}
@media screen and (min-width: 1024px){
.container {
    max-width: 960px;
}}     
@media (max-width: 850px){
     .product-center {
    grid-template-columns: repeat(3,1fr);
} 
}
@media (max-width: 640px){
.product-center {
    grid-template-columns: repeat(2,1fr);
}
.product-header .icons span {
    background-color: #fff;
    color:#799;
    font-size: 1.3rem;     
}
.product-header .icons span:not(:last-child) {
    margin-bottom: 0.5rem;
}     
}
@media (max-width: 370px){
.product-center {
    grid-template-columns: repeat(1,1fr)!important;
}}


   </style>

</head>
<body dir='rtl'>
<div class="container"> 
<div class="section">
   
<div class="product-center">
  
   <div class="product"> 
     <div class="product-header"> 
        <img src="product-1.ede54a5b.jpg" alt=""> 
        <ul class="icons">
             <span><i class="bx bx-heart"></i></span>
           <span><i class="bx bx-shopping-bag"></i></span>
           <span><i class="bx bx-search"></i></span>
       </ul>
     </div>
     <div class="product-footer"> 
        <a href="#"><h3>لحم طازج بقري</h3></a>
        <div class="nav">
      <div class="rating">
          <i class="bx bxs-star"></i>
         <i class="bx bxs-star"></i>
         <i class="bx bxs-star"></i>
         <i class="bx bxs-star"></i>
         <i class="bx bx-star"></i>
     </div>  
      <div>( 65 )</div>
   </div>
        <div class="nav">
      <h4 class="price">$50</h4>
      <h4 class="tag is-danger">sall 20% </h4>
   </div> 
   </div>
</div>
   <div class="product"> 
     <div class="product-header"> 
        <img src="product-4.6fe66382.jpg" alt=""> 
       <ul class="icons">
           <span><i class="bx bx-heart"></i></span>
           <span><i class="bx bx-shopping-bag"></i></span>
           <span><i class="bx bx-search"></i></span>
       </ul>
    </div>
     <div class="product-footer"> 
        <a href="#"><h3>عنب طازج</h3></a>
      <div class="nav">
      <div class="rating">
          <i class="bx bxs-star"></i>
         <i class="bx bxs-star"></i>
         <i class="bx bxs-star"></i>
         <i class="bx bxs-star"></i>
         <i class="bx bx-star"></i>
     </div>   
      <div>( 65 )</div>
   </div>
      <div class="nav">
        <h4 class="price">$50</h4>
        <h4 class="tag is-danger">sall 20% </h4>
     </div> 
   </div>
</div> 
   <div class="product"> 
     <div class="product-header"> 
        <img src="product-2.eebc4b18.jpg" alt=""> 
          <ul class="icons">
           <span><i class="bx bx-heart"></i></span>
           <span><i class="bx bx-shopping-bag"></i></span>
           <span><i class="bx bx-search"></i></span>
       </ul>
    </div>
     <div class="product-footer"> 
        <a href="#"><h3>عنب طازج</h3></a>
      <div class="nav">
      <div class="rating">
          <i class="bx bxs-star"></i>
         <i class="bx bxs-star"></i>
         <i class="bx bxs-star"></i>
         <i class="bx bxs-star"></i>
         <i class="bx bx-star"></i>
     </div>  
      <div>( 65 )</div>
   </div>
      <div class="nav">
        <h4 class="price">$50</h4>
        <h4 class="tag is-danger">sall 20% </h4>
     </div> 
   </div>
</div> 
   <div class="product"> 
     <div class="product-header"> 
        <img src="product-3.ff13436e.jpg" alt=""> 
          <ul class="icons">
           <span><i class="bx bx-heart"></i></span>
           <span><i class="bx bx-shopping-bag"></i></span>
           <span><i class="bx bx-search"></i></span>
       </ul>
    </div>
     <div class="product-footer"> 
        <a href="#"><h3>عنب طازج</h3></a>
      <div class="nav">
      <div class="rating">
          <i class="bx bxs-star"></i>
         <i class="bx bxs-star"></i>
         <i class="bx bxs-star"></i>
         <i class="bx bxs-star"></i>
         <i class="bx bx-star"></i>
     </div>   
      <div>( 65 )</div>
   </div>
      <div class="nav">
        <h4 class="price">$50</h4>
        <h4 class="tag is-danger">sall 20% </h4>
     </div> 
   </div>
</div> 
     
</div>
</div>  
</div> 
</body>
</html>
الترميز في HTML مجموعات الأحرف charset
لعرض صفحة HTML بشكل صحيح ، يجب أن يعرف متصفح الويب مجموعة الأحرف التي يجب استخدامها.
من ASCII إلى UTF-8

كان ASCII أول معيار لترميز الأحرف. حدد ASCII 128 حرفًا مختلفًا يمكن استخدامها على الإنترنت: الأرقام (0-9) ، والأحرف الإنجليزية (A-Z) ، وبعض الأحرف الخاصة مثل! $ + - () @ <>.

كانت ISO-8859-1 هي مجموعة الأحرف الافتراضية لـ HTML 4. تدعم مجموعة الأحرف هذه 256 رمزًا مختلفًا. يدعم HTML 4 أيضًا UTF-8.

كانت ANSI (Windows-1252) هي مجموعة أحرف Windows الأصلية. ANSI مطابق لـ ISO-8859-1 ، فيما عدا أن ANSI يحتوي على 32 حرفًا إضافيًا.

تشجع مواصفات HTML5 مطوري الويب على استخدام مجموعة أحرف UTF-8 ، والتي تغطي تقريبًا جميع الأحرف والرموز في العالم!  
ملاحظة : UTF-8   هذا الترميز وضع من قبل كل من روب بايك وكين تومسن لتمثيل معيار نظام الحروف الدولي الموحد للحروف الأبجدية لأغلب لغات العالم من بينها اللغة العربية، ويتم تشفير الرموز فيه في حجم يتراوح بين بايت واحد وأربعة بايت للرمز الواحد 

سمة مجموعة أحرف HTML
لعرض صفحة HTML بشكل صحيح ، يجب أن يعرف المتصفح مجموعة الأحرف المستخدمة في الصفحة.
هذا محدد في علامة <meta>:
<meta charset = "UTF-8">

الاختلافات بين مجموعات الأحرف 

يعرض الجدول التالي الاختلافات بين مجموعات الأحرف الموضحة أعلاه:

Numb ASCII ANSI 8859 UTF-8 Description
32 space
33 ! ! ! ! exclamation mark
34 " " " " quotation mark
35 # # # # number sign
36 $ $ $ $ dollar sign
37 % % % % percent sign
38 & & & & ampersand
39 ' ' ' ' apostrophe
40 ( ( ( ( left parenthesis
41 ) ) ) ) right parenthesis
42 * * * * asterisk
43 + + + + plus sign
44 , , , , comma
45 - - - - hyphen-minus
46 . . . . full stop
47 / / / / solidus
48 0 0 0 0 digit zero
49 1 1 1 1 digit one
50 2 2 2 2 digit two
51 3 3 3 3 digit three
52 4 4 4 4 digit four
53 5 5 5 5 digit five
54 6 6 6 6 digit six
55 7 7 7 7 digit seven
56 8 8 8 8 digit eight
57 9 9 9 9 digit nine
58 : : : : colon
59 ; ; ; ; semicolon
60 < < < < less-than sign
61 = = = = equals sign
62 > > > > greater-than sign
63 ? ? ? ? question mark
64 @ @ @ @ commercial at
65 A A A A Latin capital letter A
66 B B B B Latin capital letter B
67 C C C C Latin capital letter C
68 D D D D Latin capital letter D
69 E E E E Latin capital letter E
70 F F F F Latin capital letter F
71 G G G G Latin capital letter G
72 H H H H Latin capital letter H
73 I I I I Latin capital letter I
74 J J J J Latin capital letter J
75 K K K K Latin capital letter K
76 L L L L Latin capital letter L
77 M M M M Latin capital letter M
78 N N N N Latin capital letter N
79 O O O O Latin capital letter O
80 P P P P Latin capital letter P
81 Q Q Q Q Latin capital letter Q
82 R R R R Latin capital letter R
83 S S S S Latin capital letter S
84 T T T T Latin capital letter T
85 U U U U Latin capital letter U
86 V V V V Latin capital letter V
87 W W W W Latin capital letter W
88 X X X X Latin capital letter X
89 Y Y Y Y Latin capital letter Y
90 Z Z Z Z Latin capital letter Z
91 [ [ [ [ left square bracket
92 \ \ \ \ reverse solidus
93 ] ] ] ] right square bracket
94 ^ ^ ^ ^ circumflex accent
95 _ _ _ _ low line
96 ` ` ` ` grave accent
97 a a a a Latin small letter a
98 b b b b Latin small letter b
99 c c c c Latin small letter c
100 d d d d Latin small letter d
101 e e e e Latin small letter e
102 f f f f Latin small letter f
103 g g g g Latin small letter g
104 h h h h Latin small letter h
105 i i i i Latin small letter i
106 j j j j Latin small letter j
107 k k k k Latin small letter k
108 l l l l Latin small letter l
109 m m m m Latin small letter m
110 n n n n Latin small letter n
111 o o o o Latin small letter o
112 p p p p Latin small letter p
113 q q q q Latin small letter q
114 r r r r Latin small letter r
115 s s s s Latin small letter s
116 t t t t Latin small letter t
117 u u u u Latin small letter u
118 v v v v Latin small letter v
119 w w w w Latin small letter w
120 x x x x Latin small letter x
121 y y y y Latin small letter y
122 z z z z Latin small letter z
123 { { { { left curly bracket
124 | | | | vertical line
125 } } } } right curly bracket
126 ~ ~ ~ ~ tilde
127 DEL        
128       euro sign
129      NOT USED
130       single low-9 quotation mark
131   ƒ     Latin small letter f with hook
132       double low-9 quotation mark
133       horizontal ellipsis
134       dagger
135       double dagger
136   ˆ     modifier letter circumflex accent
137       per mille sign
138   Š     Latin capital letter S with caron
139       single left-pointing angle quotation mark
140   Œ     Latin capital ligature OE
141      NOT USED
142   Ž     Latin capital letter Z with caron
143      NOT USED
144      NOT USED
145       left single quotation mark
146       right single quotation mark
147       left double quotation mark
148       right double quotation mark
149       bullet
150       en dash
151       em dash
152   ˜     small tilde
153       trade mark sign
154   š     Latin small letter s with caron
155       single right-pointing angle quotation mark
156   œ     Latin small ligature oe
157      NOT USED
158   ž     Latin small letter z with caron
159   Ÿ     Latin capital letter Y with diaeresis
160         no-break space
161   ¡ ¡ ¡ inverted exclamation mark
162   ¢ ¢ ¢ cent sign
163   £ £ £ pound sign
164   ¤ ¤ ¤ currency sign
165   ¥ ¥ ¥ yen sign
166   ¦ ¦ ¦ broken bar
167   § § § section sign
168   ¨ ¨ ¨ diaeresis
169   © © © copyright sign
170   ª ª ª feminine ordinal indicator
171   « « « left-pointing double angle quotation mark
172   ¬ ¬ ¬ not sign
173   ­ ­ ­ soft hyphen
174   ® ® ® registered sign
175   ¯ ¯ ¯ macron
176   ° ° ° degree sign
177   ± ± ± plus-minus sign
178   ² ² ² superscript two
179   ³ ³ ³ superscript three
180   ´ ´ ´ acute accent
181   µ µ µ micro sign
182   pilcrow sign
183   · · · middle dot
184   ¸ ¸ ¸ cedilla
185   ¹ ¹ ¹ superscript one
186   º º º masculine ordinal indicator
187   » » » right-pointing double angle quotation mark
188   ¼ ¼ ¼ vulgar fraction one quarter
189   ½ ½ ½ vulgar fraction one half
190   ¾ ¾ ¾ vulgar fraction three quarters
191   ¿ ¿ ¿ inverted question mark
192   À À À Latin capital letter A with grave
193   Á Á Á Latin capital letter A with acute
194   Â Â Â Latin capital letter A with circumflex
195   Ã Ã Ã Latin capital letter A with tilde
196   Ä Ä Ä Latin capital letter A with diaeresis
197   Å Å Å Latin capital letter A with ring above
198   Æ Æ Æ Latin capital letter AE
199   Ç Ç Ç Latin capital letter C with cedilla
200   È È È Latin capital letter E with grave
201   É É É Latin capital letter E with acute
202   Ê Ê Ê Latin capital letter E with circumflex
203   Ë Ë Ë Latin capital letter E with diaeresis
204   Ì Ì Ì Latin capital letter I with grave
205   Í Í Í Latin capital letter I with acute
206   Î Î Î Latin capital letter I with circumflex
207   Ï Ï Ï Latin capital letter I with diaeresis
208   Ð Ð Ð Latin capital letter Eth
209   Ñ Ñ Ñ Latin capital letter N with tilde
210   Ò Ò Ò Latin capital letter O with grave
211   Ó Ó Ó Latin capital letter O with acute
212   Ô Ô Ô Latin capital letter O with circumflex
213   Õ Õ Õ Latin capital letter O with tilde
214   Ö Ö Ö Latin capital letter O with diaeresis
215   × × × multiplication sign
216   Ø Ø Ø Latin capital letter O with stroke
217   Ù Ù Ù Latin capital letter U with grave
218   Ú Ú Ú Latin capital letter U with acute
219   Û Û Û Latin capital letter U with circumflex
220   Ü Ü Ü Latin capital letter U with diaeresis
221   Ý Ý Ý Latin capital letter Y with acute
222   Þ Þ Þ Latin capital letter Thorn
223   ß ß ß Latin small letter sharp s
224   à à à Latin small letter a with grave
225   á á á Latin small letter a with acute
226   â â â Latin small letter a with circumflex
227   ã ã ã Latin small letter a with tilde
228   ä ä ä Latin small letter a with diaeresis
229   å å å Latin small letter a with ring above
230   æ æ æ Latin small letter ae
231   ç ç ç Latin small letter c with cedilla
232   è è è Latin small letter e with grave
233   é é é Latin small letter e with acute
234   ê ê ê Latin small letter e with circumflex
235   ë ë ë Latin small letter e with diaeresis
236   ì ì ì Latin small letter i with grave
237   í í í Latin small letter i with acute
238   î î î Latin small letter i with circumflex
239   ï ï ï Latin small letter i with diaeresis
240   ð ð ð Latin small letter eth
241   ñ ñ ñ Latin small letter n with tilde
242   ò ò ò Latin small letter o with grave
243   ó ó ó Latin small letter o with acute
244   ô ô ô Latin small letter o with circumflex
245   õ õ õ Latin small letter o with tilde
246   ö ö ö Latin small letter o with diaeresis
247   ÷ ÷ ÷ division sign
248   ø ø ø Latin small letter o with stroke
249   ù ù ù Latin small letter u with grave
250   ú ú ú Latin small letter u with acute
251   û û û Latin small letter with circumflex
252   ü ü ü Latin small letter u with diaeresis
253   ý ý ý Latin small letter y with acute
254   þ þ þ Latin small letter thorn
255   ÿ ÿ ÿ Latin small letter y with diaeresis
 استخدام  الرموز التعبيرية 


🗼 😀 🏡 🏺 🐄 🐠 🐦 🐰 🐼


الرموز التعبيرية هي أحرف من مجموعة أحرف UTF-8: 😄 😍 💗
ما هي الرموز التعبيرية What are Emojis?
تبدو الرموز التعبيرية مثل الصور أو الرموز ، لكنها ليست كذلك.
وهي عبارة عن أحرف (characters) من مجموعة أحرف UTF-8 (Unicode).
يغطي UTF-8 جميع الحروف والرموز في العالم تقريبًا مثل العربية اليونانية ...الخ .

سمة مجموعة الأحرف  The HTML charset Attribute
لعرض صفحة HTML بشكل صحيح ، يجب أن يعرف متصفح الويب مجموعة الأحرف المستخدمة في الصفحة.
بالتحديد  في علامة <meta>:
<meta charset = "UTF-8">

إذا لم يتم تحديده ، فإن UTF-8 هو الحرف الافتراضي المعين في HTML.

أحرف UTF-8
لا يمكن كتابة العديد من أحرف UTF-8 على لوحة المفاتيح ، ولكن يمكن دائمًا عرضها باستخدام الأرقام (تسمى أرقام الكيانات-entity numbers):
  • A is 65
  • B is 66
  • C is 67
مثال
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
</head>
<body>

<p>سيعرض  A B C</p>
<p>سيعرض  &#65; &#66; &#67;</p>

</body>
</html>
شرح المثال
يحدد العنصر <meta charset = "UTF-8"> مجموعة الأحرف.

يتم عرض الأحرف A و B و C بالأرقام 65 و 66 و 67.

للسماح للمتصفح بفهم أنك تعرض حرفًا ، يجب أن تبدأ رقم الكيان بـ & # وتنتهي بـ ;(فاصلة منقوطة).
أحرف الرموز التعبيرية Emoji Characters
الرموز التعبيرية هي أيضًا أحرف من أبجدية UTF-8:

😄 هو 128516
😍 هو 128525
💗 هو 128151
مثال
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
</head>
<body>

<h1>اول رمز تعبيري لي</h1>

<p>&#128512;</p>

</body>
</html>
نظرًا لأن Emojis عبارة عن أحرف ، يمكن نسخها وعرضها وحجمها تمامًا مثل أي حرف آخر في HTML.
مثال
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
</head>
<body>

<h1>حجم الرموز التعبيرية</h1>

<p style="font-size:48px">
&#128512; &#128516; &#128525; &#128151;
</p>

</body>
</html>
بعض رموز Emoji في UTF-8

 إذا كنت تريد عرض أي من هذه الرموز التعبيرية بتنسيق HTML ، فيمكنك استخدام القيمة العشرية(decimal) والقيمة السداسية العشرية(hexadecimal )  الموجود في الجدول أدناه.
  • Dec   القيمة العشرية ويبدأ ب &# ثم الرقم ثم الفارزة المنقوطة ;
  • Hex  القيمة السداسية العشرية &#x ثم الرقم ثم الفارزة المنقوطة ;

Char Dec Hex Dec
8986231A 8986
8987231B 8987
919323E9 9193
919423EA 9194
919523EB 9195
919623EC 9196
919723ED 9197
919823EE 9198
919923EF 9199
920023F0 9200
920123F1 9201
920223F2 9202
920323F3 9203
920823F8 9208
920923F9 9209
921023FA 9210
941024C2 9410
97482614 9748
97492615 9749
9757261D 9757
98002648 9800
98012649 9801
9802264A 9802
9803264B 9803
9804264C 9804
9805264D 9805
9806264E 9806
9807264F 9807
98082650 9808
98092651 9809
98102652 9810
98112653 9811
9823265F 9823
9855267F 9855
98752693 9875
988926A1 9889
989826AA 9898
989926AB 9899
991726BD 9917
991826BE 9918
992426C4 9924
992526C5 9925
993426CE 9934
993526CF 9935
993726D1 9937
993926D3 9939
994026D4 9940
996126E9 9961
996226EA 9962
996826F0 9968
996926F1 9969
997026F2 9970
997126F3 9971
997226F4 9972
997326F5 9973
997526F7 9975
997626F8 9976
997726F9 9977
997826FA 9978
998126FD 9981
99862702 9986
99892705 9989
99922708 9992
99932709 9993
9994270A 9994
9995270B 9995
9996270C 9996
9997270D 9997
9999270F 9999
100022712 10002
100042714 10004
100062716 10006
10013271D 10013
100172721 10017
100242728 10024
100352733 10035
100362734 10036
100522744 10052
100552747 10055
10060274C 10060
10062274E 10062
100672753 10067
100682754 10068
100692755 10069
100712757 10071
100832763 10083
100842764 10084
101332795 10133
101342796 10134
101352797 10135
1014527A1 10145
1016027B0 10160
1017527BF 10175
105482934 10548
105492935 10549
110132B05 11013
110142B06 11014
110152B07 11015
110352B1B 11035
110362B1C 11036
110882B50 11088
110932B55 11093
123363030 12336
12349303D 12349
129513297 12951
129533299 12953
🀄1269801F004 126980
🃏1271831F0CF 127183
🅰1273441F170 127344
🅱1273451F171 127345
🅾1273581F17E 127358
🅿1273591F17F 127359
🆎1273741F18E 127374
🆑1273771F191 127377
🆒1273781F192 127378
🆓1273791F193 127379
🆔1273801F194 127380
🆕1273811F195 127381
🆖1273821F196 127382
🆗1273831F197 127383
🆘1273841F198 127384
🆙1273851F199 127385
🆚1273861F19A 127386
🈁1274891F201 127489
🈂1274901F202 127490
🈚1275141F21A 127514
🈯1275351F22F 127535
🈲1275381F232 127538
🈳1275391F233 127539
🈴1275401F234 127540
🈵1275411F235 127541
🈶1275421F236 127542
🈷1275431F237 127543
🈸1275441F238 127544
🈹1275451F239 127545
🈺1275461F23A 127546
🉐1275681F250 127568
🉑1275691F251 127569
🌀1277441F300 127744
🌁1277451F301 127745
🌂1277461F302 127746
🌃1277471F303 127747
🌄1277481F304 127748
🌅1277491F305 127749
🌆1277501F306 127750
🌇1277511F307 127751
🌈1277521F308 127752
🌉1277531F309 127753
🌊1277541F30A 127754
🌋1277551F30B 127755
🌌1277561F30C 127756
🌍1277571F30D 127757
🌎1277581F30E 127758
🌏1277591F30F 127759
🌐1277601F310 127760
🌑1277611F311 127761
🌒1277621F312 127762
🌓1277631F313 127763
🌔1277641F314 127764
🌕1277651F315 127765
🌖1277661F316 127766
🌗1277671F317 127767
🌘1277681F318 127768
🌙1277691F319 127769
🌚1277701F31A 127770
🌛1277711F31B 127771
🌜1277721F31C 127772
🌝1277731F31D 127773
🌞1277741F31E 127774
🌟1277751F31F 127775
🌠1277761F320 127776
🌡1277771F321 127777
🌤1277801F324 127780
🌥1277811F325 127781
🌦1277821F326 127782
🌧1277831F327 127783
🌨1277841F328 127784
🌩1277851F329 127785
🌪1277861F32A 127786
🌫1277871F32B 127787
🌬1277881F32C 127788
🌭1277891F32D 127789
🌮1277901F32E 127790
🌯1277911F32F 127791
🌰1277921F330 127792
🌱1277931F331 127793
🌲1277941F332 127794
🌳1277951F333 127795
🌴1277961F334 127796
🌵1277971F335 127797
🌶1277981F336 127798
🌷1277991F337 127799
🌸1278001F338 127800
🌹1278011F339 127801
🌺1278021F33A 127802
🌻1278031F33B 127803
🌼1278041F33C 127804
🌽1278051F33D 127805
🌾1278061F33E 127806
🌿1278071F33F 127807
🍀1278081F340 127808
🍁1278091F341 127809
🍂1278101F342 127810
🍃1278111F343 127811
🍄1278121F344 127812
🍅1278131F345 127813
🍆1278141F346 127814
🍇1278151F347 127815
🍈1278161F348 127816
🍉1278171F349 127817
🍊1278181F34A 127818
🍋1278191F34B 127819
🍌1278201F34C 127820
🍍1278211F34D 127821
🍎1278221F34E 127822
🍏1278231F34F 127823
🍐1278241F350 127824
🍑1278251F351 127825
🍒1278261F352 127826
🍓1278271F353 127827
🍔1278281F354 127828
🍕1278291F355 127829
🍖1278301F356 127830
🍗1278311F357 127831
🍘1278321F358 127832
🍙1278331F359 127833
🍚1278341F35A 127834
🍛1278351F35B 127835
🍜1278361F35C 127836
🍝1278371F35D 127837
🍞1278381F35E 127838
🍟1278391F35F 127839
🍠1278401F360 127840
🍡1278411F361 127841
🍢1278421F362 127842
🍣1278431F363 127843
🍤1278441F364 127844
🍥1278451F365 127845
🍦1278461F366 127846
🍧1278471F367 127847
🍨1278481F368 127848
🍩1278491F369 127849
🍪1278501F36A 127850
🍫1278511F36B 127851
🍬1278521F36C 127852
🍭1278531F36D 127853
🍮1278541F36E 127854
🍯1278551F36F 127855
🍰1278561F370 127856
🍱1278571F371 127857
🍲1278581F372 127858
🍳1278591F373 127859
🍴1278601F374 127860
🍵1278611F375 127861
🍶1278621F376 127862
🍷1278631F377 127863
🍸1278641F378 127864
🍹1278651F379 127865
🍺1278661F37A 127866
🍻1278671F37B 127867
🍼1278681F37C 127868
🍽1278691F37D 127869
🍾1278701F37E 127870
🍿1278711F37F 127871
🎀1278721F380 127872
🎁1278731F381 127873
🎂1278741F382 127874
🎃1278751F383 127875
🎄1278761F384 127876
🎅1278771F385 127877
🎆1278781F386 127878
🎇1278791F387 127879
🎈1278801F388 127880
🎉1278811F389 127881
🎊1278821F38A 127882
🎋1278831F38B 127883
🎌1278841F38C 127884
🎍1278851F38D 127885
🎎1278861F38E 127886
🎏1278871F38F 127887
🎐1278881F390 127888
🎑1278891F391 127889
🎒1278901F392 127890
🎓1278911F393 127891
🎖1278941F396 127894
🎗1278951F397 127895
🎙1278971F399 127897
🎚1278981F39A 127898
🎛1278991F39B 127899
🎞1279021F39E 127902
🎟1279031F39F 127903
🎠1279041F3A0 127904
🎡1279051F3A1 127905
🎢1279061F3A2 127906
🎣1279071F3A3 127907
🎤1279081F3A4 127908
🎥1279091F3A5 127909
🎦1279101F3A6 127910
🎧1279111F3A7 127911
🎨1279121F3A8 127912
🎩1279131F3A9 127913
🎪1279141F3AA 127914
🎫1279151F3AB 127915
🎬1279161F3AC 127916
🎭1279171F3AD 127917
🎮1279181F3AE 127918
🎯1279191F3AF 127919
🎰1279201F3B0 127920
🎱1279211F3B1 127921
🎲1279221F3B2 127922
🎳1279231F3B3 127923
🎴1279241F3B4 127924
🎵1279251F3B5 127925
🎶1279261F3B6 127926
🎷1279271F3B7 127927
🎸1279281F3B8 127928
🎹1279291F3B9 127929
🎺1279301F3BA 127930
🎻1279311F3BB 127931
🎼1279321F3BC 127932
🎽1279331F3BD 127933
🎾1279341F3BE 127934
🎿1279351F3BF 127935
🏀1279361F3C0 127936
🏁1279371F3C1 127937
🏂1279381F3C2 127938
🏃1279391F3C3 127939
🏄1279401F3C4 127940
🏅1279411F3C5 127941
🏆1279421F3C6 127942
🏇1279431F3C7 127943
🏈1279441F3C8 127944
🏉1279451F3C9 127945
🏊1279461F3CA 127946
🏋1279471F3CB 127947
🏌1279481F3CC 127948
🏍1279491F3CD 127949
🏎1279501F3CE 127950
🏏1279511F3CF 127951
🏐1279521F3D0 127952
🏑1279531F3D1 127953
🏒1279541F3D2 127954
🏓1279551F3D3 127955
🏔1279561F3D4 127956
🏕1279571F3D5 127957
🏖1279581F3D6 127958
🏗1279591F3D7 127959
🏘1279601F3D8 127960
🏙1279611F3D9 127961
🏚1279621F3DA 127962
🏛1279631F3DB 127963
🏜1279641F3DC 127964
🏝1279651F3DD 127965
🏞1279661F3DE 127966
🏟1279671F3DF 127967
🏠1279681F3E0 127968
🏡1279691F3E1 127969
🏢1279701F3E2 127970
🏣1279711F3E3 127971
🏤1279721F3E4 127972
🏥1279731F3E5 127973
🏦1279741F3E6 127974
🏧1279751F3E7 127975
🏨1279761F3E8 127976
🏩1279771F3E9 127977
🏪1279781F3EA 127978
🏫1279791F3EB 127979
🏬1279801F3EC 127980
🏭1279811F3ED 127981
🏮1279821F3EE 127982
🏯1279831F3EF 127983
🏰1279841F3F0 127984
🏳1279871F3F3 127987
🏴1279881F3F4 127988
🏵1279891F3F5 127989
🏷1279911F3F7 127991
🏸1279921F3F8 127992
🏹1279931F3F9 127993
🏺1279941F3FA 127994
🏻1279951F3FB 127995
🏼1279961F3FC 127996
🏽1279971F3FD 127997
🏾1279981F3FE 127998
🏿1279991F3FF 127999
🐀1280001F400 128000
🐁1280011F401 128001
🐂1280021F402 128002
🐃1280031F403 128003
🐄1280041F404 128004
🐅1280051F405 128005
🐆1280061F406 128006
🐇1280071F407 128007
🐈1280081F408 128008
🐉1280091F409 128009
🐊1280101F40A 128010
🐋1280111F40B 128011
🐌1280121F40C 128012
🐍1280131F40D 128013
🐎1280141F40E 128014
🐏1280151F40F 128015
🐐1280161F410 128016
🐑1280171F411 128017
🐒1280181F412 128018
🐓1280191F413 128019
🐔1280201F414 128020
🐕1280211F415 128021
🐖1280221F416 128022
🐗1280231F417 128023
🐘1280241F418 128024
🐙1280251F419 128025
🐚1280261F41A 128026
🐛1280271F41B 128027
🐜1280281F41C 128028
🐝1280291F41D 128029
🐞1280301F41E 128030
🐟1280311F41F 128031
🐠1280321F420 128032
🐡1280331F421 128033
🐢1280341F422 128034
🐣1280351F423 128035
🐤1280361F424 128036
🐥1280371F425 128037
🐦1280381F426 128038
🐧1280391F427 128039
🐨1280401F428 128040
🐩1280411F429 128041
🐪1280421F42A 128042
🐫1280431F42B 128043
🐬1280441F42C 128044
🐭1280451F42D 128045
🐮1280461F42E 128046
🐯1280471F42F 128047
🐰1280481F430 128048
🐱1280491F431 128049
🐲1280501F432 128050
🐳1280511F433 128051
🐴1280521F434 128052
🐵1280531F435 128053
🐶1280541F436 128054
🐷1280551F437 128055
🐸1280561F438 128056
🐹1280571F439 128057
🐺1280581F43A 128058
🐻1280591F43B 128059
🐼1280601F43C 128060
🐽1280611F43D 128061
🐾1280621F43E 128062
🐿1280631F43F 128063
👀1280641F440 128064
👁1280651F441 128065
👂1280661F442 128066
👃1280671F443 128067
👄1280681F444 128068
👅1280691F445 128069
👆1280701F446 128070
👇1280711F447 128071
👈1280721F448 128072
👉1280731F449 128073
👊1280741F44A 128074
👋1280751F44B 128075
👌1280761F44C 128076
👍1280771F44D 128077
👎1280781F44E 128078
👏1280791F44F 128079
👐1280801F450 128080
👑1280811F451 128081
👒1280821F452 128082
👓1280831F453 128083
👔1280841F454 128084
👕1280851F455 128085
👖1280861F456 128086
👗1280871F457 128087
👘1280881F458 128088
👙1280891F459 128089
👚1280901F45A 128090
👛1280911F45B 128091
👜1280921F45C 128092
👝1280931F45D 128093
👞1280941F45E 128094
👟1280951F45F 128095
👠1280961F460 128096
👡1280971F461 128097
👢1280981F462 128098
👣1280991F463 128099
👤1281001F464 128100
👥1281011F465 128101
👦1281021F466 128102
👧1281031F467 128103
👨1281041F468 128104
👩1281051F469 128105
👪1281061F46A 128106
👫1281071F46B 128107
👬1281081F46C 128108
👭1281091F46D 128109
👮1281101F46E 128110
👯1281111F46F 128111
👰1281121F470 128112
👱1281131F471 128113
👲1281141F472 128114
👳1281151F473 128115
👴1281161F474 128116
👵1281171F475 128117
👶1281181F476 128118
👷1281191F477 128119
👸1281201F478 128120
👹1281211F479 128121
👺1281221F47A 128122
👻1281231F47B 128123
👼1281241F47C 128124
👽1281251F47D 128125
👾1281261F47E 128126
👿1281271F47F 128127
💀1281281F480 128128
💁1281291F481 128129
💂1281301F482 128130
💃1281311F483 128131
💄1281321F484 128132
💅1281331F485 128133
💆1281341F486 128134
💇1281351F487 128135
💈1281361F488 128136
💉1281371F489 128137
💊1281381F48A 128138
💋1281391F48B 128139
💌1281401F48C 128140
💍1281411F48D 128141
💎1281421F48E 128142
💏1281431F48F 128143
💐1281441F490 128144
💑1281451F491 128145
💒1281461F492 128146
💓1281471F493 128147
💔1281481F494 128148
💕1281491F495 128149
💖1281501F496 128150
💗1281511F497 128151
💘1281521F498 128152
💙1281531F499 128153
💚1281541F49A 128154
💛1281551F49B 128155
💜1281561F49C 128156
💝1281571F49D 128157
💞1281581F49E 128158
💟1281591F49F 128159
💠1281601F4A0 128160
💡1281611F4A1 128161
💢1281621F4A2 128162
💣1281631F4A3 128163
💤1281641F4A4 128164
💥1281651F4A5 128165
💦1281661F4A6 128166
💧1281671F4A7 128167
💨1281681F4A8 128168
💩1281691F4A9 128169
💪1281701F4AA 128170
💫1281711F4AB 128171
💬1281721F4AC 128172
💭1281731F4AD 128173
💮1281741F4AE 128174
💯1281751F4AF 128175
💰1281761F4B0 128176
💱1281771F4B1 128177
💲1281781F4B2 128178
💳1281791F4B3 128179
💴1281801F4B4 128180
💵1281811F4B5 128181
💶1281821F4B6 128182
💷1281831F4B7 128183
💸1281841F4B8 128184
💹1281851F4B9 128185
💺1281861F4BA 128186
💻1281871F4BB 128187
💼1281881F4BC 128188
💽1281891F4BD 128189
💾1281901F4BE 128190
💿1281911F4BF 128191
📀1281921F4C0 128192
📁1281931F4C1 128193
📂1281941F4C2 128194
📃1281951F4C3 128195
📄1281961F4C4 128196
📅1281971F4C5 128197
📆1281981F4C6 128198
📇1281991F4C7 128199
📈1282001F4C8 128200
📉1282011F4C9 128201
📊1282021F4CA 128202
📋1282031F4CB 128203
📌1282041F4CC 128204
📍1282051F4CD 128205
📎1282061F4CE 128206
📏1282071F4CF 128207
📐1282081F4D0 128208
📑1282091F4D1 128209
📒1282101F4D2 128210
📓1282111F4D3 128211
📔1282121F4D4 128212
📕1282131F4D5 128213
📖1282141F4D6 128214
📗1282151F4D7 128215
📘1282161F4D8 128216
📙1282171F4D9 128217
📚1282181F4DA 128218
📛1282191F4DB 128219
📜1282201F4DC 128220
📝1282211F4DD 128221
📞1282221F4DE 128222
📟1282231F4DF 128223
📠1282241F4E0 128224
📡1282251F4E1 128225
📢1282261F4E2 128226
📣1282271F4E3 128227
📤1282281F4E4 128228
📥1282291F4E5 128229
📦1282301F4E6 128230
📧1282311F4E7 128231
📨1282321F4E8 128232
📩1282331F4E9 128233
📪1282341F4EA 128234
📫1282351F4EB 128235
📬1282361F4EC 128236
📭1282371F4ED 128237
📮1282381F4EE 128238
📯1282391F4EF 128239
📰1282401F4F0 128240
📱1282411F4F1 128241
📲1282421F4F2 128242
📳1282431F4F3 128243
📴1282441F4F4 128244
📵1282451F4F5 128245
📶1282461F4F6 128246
📷1282471F4F7 128247
📸1282481F4F8 128248
📹1282491F4F9 128249
📺1282501F4FA 128250
📻1282511F4FB 128251
📼1282521F4FC 128252
📽1282531F4FD 128253
📿1282551F4FF 128255
🔀1282561F500 128256
🔁1282571F501 128257
🔂1282581F502 128258
🔃1282591F503 128259
🔄1282601F504 128260
🔅1282611F505 128261
🔆1282621F506 128262
🔇1282631F507 128263
🔈1282641F508 128264
🔉1282651F509 128265
🔊1282661F50A 128266
🔋1282671F50B 128267
🔌1282681F50C 128268
🔍1282691F50D 128269
🔎1282701F50E 128270
🔏1282711F50F 128271
🔐1282721F510 128272
🔑1282731F511 128273
🔒1282741F512 128274
🔓1282751F513 128275
🔔1282761F514 128276
🔕1282771F515 128277
🔖1282781F516 128278
🔗1282791F517 128279
🔘1282801F518 128280
🔙1282811F519 128281
🔚1282821F51A 128282
🔛1282831F51B 128283
🔜1282841F51C 128284
🔝1282851F51D 128285
🔞1282861F51E 128286
🔟1282871F51F 128287
🔠1282881F520 128288
🔡1282891F521 128289
🔢1282901F522 128290
🔣1282911F523 128291
🔤1282921F524 128292
🔥1282931F525 128293
🔦1282941F526 128294
🔧1282951F527 128295
🔨1282961F528 128296
🔩1282971F529 128297
🔪1282981F52A 128298
🔫1282991F52B 128299
🔬1283001F52C 128300
🔭1283011F52D 128301
🔮1283021F52E 128302
🔯1283031F52F 128303
🔰1283041F530 128304
🔱1283051F531 128305
🔲1283061F532 128306
🔳1283071F533 128307
🔴1283081F534 128308
🔵1283091F535 128309
🔶1283101F536 128310
🔷1283111F537 128311
🔸1283121F538 128312
🔹1283131F539 128313
🔺1283141F53A 128314
🔻1283151F53B 128315
🔼1283161F53C 128316
🔽1283171F53D 128317
🕉1283291F549 128329
🕊1283301F54A 128330
🕋1283311F54B 128331
🕌1283321F54C 128332
🕍1283331F54D 128333
🕎1283341F54E 128334
🕐1283361F550 128336
🕑1283371F551 128337
🕒1283381F552 128338
🕓1283391F553 128339
🕔1283401F554 128340
🕕1283411F555 128341
🕖1283421F556 128342
🕗1283431F557 128343
🕘1283441F558 128344
🕙1283451F559 128345
🕚1283461F55A 128346
🕛1283471F55B 128347
🕜1283481F55C 128348
🕝1283491F55D 128349
🕞1283501F55E 128350
🕟1283511F55F 128351
🕠1283521F560 128352
🕡1283531F561 128353
🕢1283541F562 128354
🕣1283551F563 128355
🕤1283561F564 128356
🕥1283571F565 128357
🕦1283581F566 128358
🕧1283591F567 128359
🕯1283671F56F 128367
🕰1283681F570 128368
🕳1283711F573 128371
🕴1283721F574 128372
🕵1283731F575 128373
🕶1283741F576 128374
🕷1283751F577 128375
🕸1283761F578 128376
🕹1283771F579 128377
🕺1283781F57A 128378
🖇1283911F587 128391
🖊1283941F58A 128394
🖋1283951F58B 128395
🖌1283961F58C 128396
🖍1283971F58D 128397
🖐1284001F590 128400
🖕1284051F595 128405
🖖1284061F596 128406
🖤1284201F5A4 128420
🖥1284211F5A5 128421
🖨1284241F5A8 128424
🖱1284331F5B1 128433
🖲1284341F5B2 128434
🖼1284441F5BC 128444
🗂1284501F5C2 128450
🗃1284511F5C3 128451
🗄1284521F5C4 128452
🗑1284651F5D1 128465
🗒1284661F5D2 128466
🗓1284671F5D3 128467
🗜1284761F5DC 128476
🗝1284771F5DD 128477
🗞1284781F5DE 128478
🗡1284811F5E1 128481
🗣1284831F5E3 128483
🗨1284881F5E8 128488
🗯1284951F5EF 128495
🗳1284991F5F3 128499
🗺1285061F5FA 128506
🗻1285071F5FB 128507
🗼1285081F5FC 128508
🗽1285091F5FD 128509
🗾1285101F5FE 128510
🗿1285111F5FF 128511
😀1285121F600 128512
😁1285131F601 128513
😂1285141F602 128514
😃1285151F603 128515
😄1285161F604 128516
😅1285171F605 128517
😆1285181F606 128518
😇1285191F607 128519
😈1285201F608 128520
😉1285211F609 128521
😊1285221F60A 128522
😋1285231F60B 128523
😌1285241F60C 128524
😍1285251F60D 128525
😎1285261F60E 128526
😏1285271F60F 128527
😐1285281F610 128528
😑1285291F611 128529
😒1285301F612 128530
😓1285311F613 128531
😔1285321F614 128532
😕1285331F615 128533
😖1285341F616 128534
😗1285351F617 128535
😘1285361F618 128536
😙1285371F619 128537
😚1285381F61A 128538
😛1285391F61B 128539
😜1285401F61C 128540
😝1285411F61D 128541
😞1285421F61E 128542
😟1285431F61F 128543
😠1285441F620 128544
😡1285451F621 128545
😢1285461F622 128546
😣1285471F623 128547
😤1285481F624 128548
😥1285491F625 128549
😦1285501F626 128550
😧1285511F627 128551
😨1285521F628 128552
😩1285531F629 128553
😪1285541F62A 128554
😫1285551F62B 128555
😬1285561F62C 128556
😭1285571F62D 128557
😮1285581F62E 128558
😯1285591F62F 128559
😰1285601F630 128560
😱1285611F631 128561
😲1285621F632 128562
😳1285631F633 128563
😴1285641F634 128564
😵1285651F635 128565
😶1285661F636 128566
😷1285671F637 128567
😸1285681F638 128568
😹1285691F639 128569
😺1285701F63A 128570
😻1285711F63B 128571
😼1285721F63C 128572
😽1285731F63D 128573
😾1285741F63E 128574
😿1285751F63F 128575
🙀1285761F640 128576
🙁1285771F641 128577
🙂1285781F642 128578
🙃1285791F643 128579
🙄1285801F644 128580
🙅1285811F645 128581
🙆1285821F646 128582
🙇1285831F647 128583
🙈1285841F648 128584
🙉1285851F649 128585
🙊1285861F64A 128586
🙋1285871F64B 128587
🙌1285881F64C 128588
🙍1285891F64D 128589
🙎1285901F64E 128590
🙏1285911F64F 128591
🚀1286401F680 128640
🚁1286411F681 128641
🚂1286421F682 128642
🚃1286431F683 128643
🚄1286441F684 128644
🚅1286451F685 128645
🚆1286461F686 128646
🚇1286471F687 128647
🚈1286481F688 128648
🚉1286491F689 128649
🚊1286501F68A 128650
🚋1286511F68B 128651
🚌1286521F68C 128652
🚍1286531F68D 128653
🚎1286541F68E 128654
🚏1286551F68F 128655
🚐1286561F690 128656
🚑1286571F691 128657
🚒1286581F692 128658
🚓1286591F693 128659
🚔1286601F694 128660
🚕1286611F695 128661
🚖1286621F696 128662
🚗1286631F697 128663
🚘1286641F698 128664
🚙1286651F699 128665
🚚1286661F69A 128666
🚛1286671F69B 128667
🚜1286681F69C 128668
🚝1286691F69D 128669
🚞1286701F69E 128670
🚟1286711F69F 128671
🚠1286721F6A0 128672
🚡1286731F6A1 128673
🚢1286741F6A2 128674
🚣1286751F6A3 128675
🚤1286761F6A4 128676
🚥1286771F6A5 128677
🚦1286781F6A6 128678
🚧1286791F6A7 128679
🚨1286801F6A8 128680
🚩1286811F6A9 128681
🚪1286821F6AA 128682
🚫1286831F6AB 128683
🚬1286841F6AC 128684
🚭1286851F6AD 128685
🚮1286861F6AE 128686
🚯1286871F6AF 128687
🚰1286881F6B0 128688
🚱1286891F6B1 128689
🚲1286901F6B2 128690
🚳1286911F6B3 128691
🚴1286921F6B4 128692
🚵1286931F6B5 128693
🚶1286941F6B6 128694
🚷1286951F6B7 128695
🚸1286961F6B8 128696
🚹1286971F6B9 128697
🚺1286981F6BA 128698
🚻1286991F6BB 128699
🚼1287001F6BC 128700
🚽1287011F6BD 128701
🚾1287021F6BE 128702
🚿1287031F6BF 128703
🛀1287041F6C0 128704
🛁1287051F6C1 128705
🛂1287061F6C2 128706
🛃1287071F6C3 128707
🛄1287081F6C4 128708
🛅1287091F6C5 128709
🛋1287151F6CB 128715
🛌1287161F6CC 128716
🛍1287171F6CD 128717
🛎1287181F6CE 128718
🛏1287191F6CF 128719
🛐1287201F6D0 128720
🛑1287211F6D1 128721
🛒1287221F6D2 128722
🛠1287361F6E0 128736
🛡1287371F6E1 128737
🛢1287381F6E2 128738
🛣1287391F6E3 128739
🛤1287401F6E4 128740
🛥1287411F6E5 128741
🛩1287451F6E9 128745
🛫1287471F6EB 128747
🛬1287481F6EC 128748
🛰1287521F6F0 128752
🛳1287551F6F3 128755
🛴1287561F6F4 128756
🛵1287571F6F5 128757
🛶1287581F6F6 128758
🛷1287591F6F7 128759
🛸1287601F6F8 128760
🛹1287611F6F9 128761
🛺1287621F6FA 128762
🤐1292961F910 129296
🤑1292971F911 129297
🤒1292981F912 129298
🤓1292991F913 129299
🤔1293001F914 129300
🤕1293011F915 129301
🤖1293021F916 129302
🤗1293031F917 129303
🤘1293041F918 129304
🤙1293051F919 129305
🤚1293061F91A 129306
🤛1293071F91B 129307
🤜1293081F91C 129308
🤝1293091F91D 129309
🤞1293101F91E 129310
🤟1293111F91F 129311
🤠1293121F920 129312
🤡1293131F921 129313
🤢1293141F922 129314
🤣1293151F923 129315
🤤1293161F924 129316
🤥1293171F925 129317
🤦1293181F926 129318
🤧1293191F927 129319
🤨1293201F928 129320
🤩1293211F929 129321
🤪1293221F92A 129322
🤫1293231F92B 129323
🤬1293241F92C 129324
🤭1293251F92D 129325
🤮1293261F92E 129326
🤯1293271F92F 129327
🤰1293281F930 129328
🤱1293291F931 129329
🤲1293301F932 129330
🤳1293311F933 129331
🤴1293321F934 129332
🤵1293331F935 129333
🤶1293341F936 129334
🤷1293351F937 129335
🤸1293361F938 129336
🤹1293371F939 129337
🤺1293381F93A 129338
🤼1293401F93C 129340
🤽1293411F93D 129341
🤾1293421F93E 129342
🥀1293441F940 129344
🥁1293451F941 129345
🥂1293461F942 129346
🥃1293471F943 129347
🥄1293481F944 129348
🥅1293491F945 129349
🥇1293511F947 129351
🥈1293521F948 129352
🥉1293531F949 129353
🥊1293541F94A 129354
🥋1293551F94B 129355
🥌1293561F94C 129356
🥍1293571F94D 129357
🥎1293581F94E 129358
🥏1293591F94F 129359
🥐1293601F950 129360
🥑1293611F951 129361
🥒1293621F952 129362
🥓1293631F953 129363
🥔1293641F954 129364
🥕1293651F955 129365
🥖1293661F956 129366
🥗1293671F957 129367
🥘1293681F958 129368
🥙1293691F959 129369
🥚1293701F95A 129370
🥛1293711F95B 129371
🥜1293721F95C 129372
🥝1293731F95D 129373
🥞1293741F95E 129374
🥟1293751F95F 129375
🥠1293761F960 129376
🥡1293771F961 129377
🥢1293781F962 129378
🥣1293791F963 129379
🥤1293801F964 129380
🥥1293811F965 129381
🥦1293821F966 129382
🥧1293831F967 129383
🥨1293841F968 129384
🥩1293851F969 129385
🥪1293861F96A 129386
🥫1293871F96B 129387
🦀1294081F980 129408
🦁1294091F981 129409
🦂1294101F982 129410
🦃1294111F983 129411
🦄1294121F984 129412
🦅1294131F985 129413
🦆1294141F986 129414
🦇1294151F987 129415
🦈1294161F988 129416
🦉1294171F989 129417
🦊1294181F98A 129418
🦋1294191F98B 129419
🦌1294201F98C 129420
🦍1294211F98D 129421
🦎1294221F98E 129422
🦏1294231F98F 129423
🦐1294241F990 129424
🦑1294251F991 129425
🦒1294261F992 129426
🦓1294271F993 129427
🦔1294281F994 129428
🦕1294291F995 129429
🦖1294301F996 129430
🦗1294311F997 129431
🧀1294721F9C0 129472
🧐1294881F9D0 129488
🧑1294891F9D1 129489
🧒1294901F9D2 129490
🧓1294911F9D3 129491
🧔1294921F9D4 129492
🧕1294931F9D5 129493
🧖1294941F9D6 129494
🧗1294951F9D7 129495
🧘1294961F9D8 129496
🧙1294971F9D9 129497
🧚1294981F9DA 129498
🧛1294991F9DB 129499
🧜1295001F9DC 129500
🧝1295011F9DD 129501
🧞1295021F9DE 129502
🧟1295031F9DF 129503
🧠1295041F9E0 129504
🧡1295051F9E1 129505
🧢1295061F9E2 129506
🧣1295071F9E3 129507
🧤1295081F9E4 129508
🧥1295091F9E5 129509
🧦1295101F9E6 129510