Símbolos ASCII y Unicode (Glyphs)
Buscalos por categorias:
Latin 1, Latin extended, Punctuación, Flechas, Formas geométricas, Alfabeto griego, Símbolos matemáticos, Misceláneo, IPA (International Phonetic Alphabet), Divisas, Manos, Reciclar, Ajedrez, Naipes, Notas musicales, Meteo, Zodiaco, Cruces, Estrellas.
Al hacer click sobre cada símbolo aparecerá un pop-up con:
- los códigos decimal y hex para utilizar en el html,
- el codigo hex para utilizar con los pseudoselectores
:before
y:after
en el css - el codigo para utilizar en los output de javaScript.
HTML
En el html
, además del nombre mnemotécnico ( ó
) podemos utilizar los códigos numéricos decimal ( ó
) i hex ( ó
).
De hecho no todos los símbolos tienen un nombre mnemotécnico, por lo cual es importante conocer las otras opciones.
<p>Atención! Aquí viene el camión</p>
<p>Atención! Aquí viene el camión</p>
<p>Atención! Aquí viene el camión</p>
CSS
Podemos generar contenido en el CSS
utilizando los pseudo-elementos :before
(antes de) y :after
(después de).
¿Pero qué pasa si queremos insertar texto con diacríticos o símbolos?
Prácticamente podemos insertar cualquier carácter especial, y para insertarlo escribiremos el código hexadecimal precedido por el carácter de escape ( \ ) así:
p:before{content: "Atenci\0f3n";color:#d14;}
JavaScript
¿Como podemos sacar símbolos en el output de JavaScript?
Para incluir símbolos en los output de javaScript (alert()
, confirm()
, prompt()
) tenemos que utilizar el codigo hexadecimal del símbolo:
En lo que concierne document.write()
y document.writeln()
tenemos varias posibilidades:
document.write ( '\241Atenci\3631n!' ) ; document.write ( '¡Atención!' ) ; document.write ( '¡Atención!' ) ; document.write ( '¡Atención!' );
Categorías:
Latin 1
¡ | ¢ | £ | ¤ | ¥ | ¦ | § |
¨ | © | ª | « | ¬ | ® | ¯ |
° | ± | ² | ³ | ´ | µ | ¶ |
· | ¸ | ¹ | º | » | ¼ | ½ |
¾ | ¿ | À | Á | Â | Ã | Ä |
Å | Æ | Ç | È | É | Ê | Ë |
Ì | Í | Î | Ï | Ð | Ñ | Ò |
Ó | Ô | Õ | Ö | × | Ø | Ù |
Ú | Û | Ü | Ý | Þ | ß | à |
á | â | ã | ä | å | æ | ç |
è | é | ê | ë | ì | í | î |
ï | ð | ñ | ò | ó | ô | õ |
ö | ÷ | ø | ù | ú | û | ü |
ý | þ | ÿ |
- Decimal: ¡
- Hex: ¡
- css:before \0a1
- alert(): \241
- Decimal: ¢
- Hex: ¢
- css:before \0a2
- alert(): \242
- Decimal: £
- Hex: £
- css:before \0a3
- alert(): \243
- Decimal: ¤
- Hex: ¤
- css:before \0a4
- alert(): \244
- Decimal: ¥
- Hex: ¥
- css:before \0a5
- alert(): \245
- Decimal: ¦
- Hex: ¦
- css:before \0a6
- alert(): \246
- Decimal: §
- Hex: §
- css:before \0a7
- alert(): \247
- Decimal: ¨
- Hex: ¨
- css:before \0a8
- alert(): \250
- Decimal: ©
- Hex: ©
- css:before \0a9
- alert(): \251
- Decimal: ª
- Hex: ª
- css:before \0aa
- alert(): \252
- Decimal: «
- Hex: «
- css:before \0ab
- alert(): \253
- Decimal: ¬
- Hex: ¬
- css:before \0ac
- alert(): \254
- Decimal: ®
- Hex: ®
- css:before \0ae
- alert(): \256
- Decimal: ¯
- Hex: ¯
- css:before \0af
- alert(): \257
- Decimal: °
- Hex: °
- css:before \0b0
- alert(): \260
- Decimal: ±
- Hex: ±
- css:before \0b1
- alert(): \261
- Decimal: ²
- Hex: ²
- css:before \0b2
- alert(): \262
- Decimal: ³
- Hex: ³
- css:before \0b3
- alert(): \263
- Decimal: ´
- Hex: ´
- css:before \0b4
- alert(): \264
- Decimal: µ
- Hex: µ
- css:before \0b5
- alert(): \265
- Decimal: ¶
- Hex: ¶
- css:before \0b6
- alert(): \266
- Decimal: ·
- Hex: ·
- css:before \0b7
- alert(): \267
- Decimal: ¸
- Hex: ¸
- css:before \0b8
- alert(): \270
- Decimal: ¹
- Hex: ¹
- css:before \0b9
- alert(): \271
- Decimal: º
- Hex: º
- css:before \0ba
- alert(): \272
- Decimal: »
- Hex: »
- css:before \0bb
- alert(): \273
- Decimal: ¼
- Hex: ¼
- css:before \0bc
- alert(): \274
- Decimal: ½
- Hex: ½
- css:before \0bd
- alert(): \275
- Decimal: ¾
- Hex: ¾
- css:before \0be
- alert(): \276
- Decimal: ¿
- Hex: ¿
- css:before \0bf
- alert(): \277
- Decimal: À
- Hex: À
- css:before \0c0
- alert(): \300
- Decimal: Á
- Hex: Á
- css:before \0c1
- alert(): \301
- Decimal: Â
- Hex: Â
- css:before \0c2
- alert(): \302
- Decimal: Ã
- Hex: Ã
- css:before \0c3
- alert(): \303
- Decimal: Ä
- Hex: Ä
- css:before \0c4
- alert(): \304
- Decimal: Å
- Hex: Å
- css:before \0c5
- alert(): \305
- Decimal: Æ
- Hex: Æ
- css:before \0c6
- alert(): \306
- Decimal: Ç
- Hex: Ç
- css:before \0c7
- alert(): \307
- Decimal: È
- Hex: È
- css:before \0c8
- alert(): \310
- Decimal: É
- Hex: É
- css:before \0c9
- alert(): \311
- Decimal: Ê
- Hex: Ê
- css:before \0ca
- alert(): \312
- Decimal: Ë
- Hex: Ë
- css:before \0cb
- alert(): \313
- Decimal: Ì
- Hex: Ì
- css:before \0cc
- alert(): \314
- Decimal: Í
- Hex: Í
- css:before \0cd
- alert(): \315
- Decimal: Î
- Hex: Î
- css:before \0ce
- alert(): \316
- Decimal: Ï
- Hex: Ï
- css:before \0cf
- alert(): \317
- Decimal: Ð
- Hex: Ð
- css:before \0d0
- alert(): \320
- Decimal: Ñ
- Hex: Ñ
- css:before \0d1
- alert(): \321
- Decimal: Ò
- Hex: Ò
- css:before \0d2
- alert(): \322
- Decimal: Ó
- Hex: Ó
- css:before \0d3
- alert(): \323
- Decimal: Ô
- Hex: Ô
- css:before \0d4
- alert(): \324
- Decimal: Õ
- Hex: Õ
- css:before \0d5
- alert(): \325
- Decimal: Ö
- Hex: Ö
- css:before \0d6
- alert(): \326
- Decimal: ×
- Hex: ×
- css:before \0d7
- alert(): \327
- Decimal: Ø
- Hex: Ø
- css:before \0d8
- alert(): \330
- Decimal: Ù
- Hex: Ù
- css:before \0d9
- alert(): \331
- Decimal: Ú
- Hex: Ú
- css:before \0da
- alert(): \332
- Decimal: Û
- Hex: Û
- css:before \0db
- alert(): \333
- Decimal: Ü
- Hex: Ü
- css:before \0dc
- alert(): \334
- Decimal: Ý
- Hex: Ý
- css:before \0dd
- alert(): \335
- Decimal: Þ
- Hex: Þ
- css:before \0de
- alert(): \336
- Decimal: ß
- Hex: ß
- css:before \0df
- alert(): \337
- Decimal: à
- Hex: à
- css:before \0e0
- alert(): \340
- Decimal: á
- Hex: á
- css:before \0e1
- alert(): \341
- Decimal: â
- Hex: â
- css:before \0e2
- alert(): \342
- Decimal: ã
- Hex: ã
- css:before \0e3
- alert(): \343
- Decimal: ä
- Hex: ä
- css:before \0e4
- alert(): \344
- Decimal: å
- Hex: å
- css:before \0e5
- alert(): \345
- Decimal: æ
- Hex: æ
- css:before \0e6
- alert(): \346
- Decimal: ç
- Hex: ç
- css:before \0e7
- alert(): \347
- Decimal: è
- Hex: è
- css:before \0e8
- alert(): \350
- Decimal: é
- Hex: é
- css:before \0e9
- alert(): \351
- Decimal: ê
- Hex: ê
- css:before \0ea
- alert(): \352
- Decimal: ë
- Hex: ë
- css:before \0eb
- alert(): \353
- Decimal: ì
- Hex: ì
- css:before \0ec
- alert(): \354
- Decimal: í
- Hex: í
- css:before \0ed
- alert(): \355
- Decimal: î
- Hex: î
- css:before \0ee
- alert(): \356
- Decimal: ï
- Hex: ï
- css:before \0ef
- alert(): \357
- Decimal: ð
- Hex: ð
- css:before \0f0
- alert(): \360
- Decimal: ñ
- Hex: ñ
- css:before \0f1
- alert(): \361
- Decimal: ò
- Hex: ò
- css:before \0f2
- alert(): \362
- Decimal: ó
- Hex: ó
- css:before \0f3
- alert(): \363
- Decimal: ô
- Hex: ô
- css:before \0f4
- alert(): \364
- Decimal: õ
- Hex: õ
- css:before \0f5
- alert(): \365
- Decimal: ö
- Hex: ö
- css:before \0f6
- alert(): \366
- Decimal: ÷
- Hex: ÷
- css:before \0f7
- alert(): \367
- Decimal: ø
- Hex: ø
- css:before \0f8
- alert(): \370
- Decimal: ù
- Hex: ù
- css:before \0f9
- alert(): \371
- Decimal: ú
- Hex: ú
- css:before \0fa
- alert(): \372
- Decimal: û
- Hex: û
- css:before \0fb
- alert(): \373
- Decimal: ü
- Hex: ü
- css:before \0fc
- alert(): \374
- Decimal: ý
- Hex: ý
- css:before \0fd
- alert(): \375
- Decimal: þ
- Hex: þ
- css:before \0fe
- alert(): \376
- Decimal: ÿ
- Hex: ÿ
- css:before \0ff
- alert(): \377
Latin extended
Ā | ā | Ă | ă | Ą | ą | Ć |
ć | Ĉ | ĉ | Ċ | ċ | Č | č |
Ď | ď | Đ | đ | Ē | ē | Ĕ |
ĕ | Ė | ė | Ę | ę | Ě | ě |
Ĝ | ĝ | Ğ | ğ | Ġ | ġ | Ģ |
ģ | Ĥ | ĥ | Ħ | ħ | Ĩ | ĩ |
Ī | ī | Ĭ | ĭ | Į | į | İ |
ı | IJ | ij | Ĵ | ĵ | Ķ | ķ |
ĸ | Ĺ | ĺ | Ļ | ļ | Ľ | ľ |
Ŀ | ŀ | Ł | ł | Ń | ń | Ņ |
ņ | Ň | ň | ʼn | Ŋ | ŋ | Ō |
ō | Ŏ | ŏ | Ő | ő | Œ | œ |
Ŗ | ŗ | Ř | ř | Ś | ś | Ŝ |
ŝ | Ş | ş | Š | š | Ţ | ţ |
Ť | ť | Ŧ | ŧ | Ũ | ũ | Ū |
ū | Ŭ | ŭ | Ů | ů | Ű | ű |
Ų | ų | Ŵ | ŵ | Ŷ | ŷ | Ÿ |
Ź | ź | Ż | ż | Ž | ž |
- Decimal: Ā
- Hex: Ā
- css:before \0100
- alert(): \u0100
- Decimal: ā
- Hex: ā
- css:before \0101
- alert(): \u0101
- Decimal: Ă
- Hex: Ă
- css:before \0102
- alert(): \u0102
- Decimal: ă
- Hex: ă
- css:before \0103
- alert(): \u0103
- Decimal: Ą
- Hex: Ą
- css:before \0104
- alert(): \u0104
- Decimal: ą
- Hex: ą
- css:before \0105
- alert(): \u0105
- Decimal: Ć
- Hex: Ć
- css:before \0106
- alert(): \u0106
- Decimal: ć
- Hex: ć
- css:before \0107
- alert(): \u0107
- Decimal: Ĉ
- Hex: Ĉ
- css:before \0108
- alert(): \u0108
- Decimal: ĉ
- Hex: ĉ
- css:before \0109
- alert(): \u0109
- Decimal: Ċ
- Hex: Ċ
- css:before \010a
- alert(): \u010a
- Decimal: ċ
- Hex: ċ
- css:before \010b
- alert(): \u010b
- Decimal: Č
- Hex: Č
- css:before \010c
- alert(): \u010c
- Decimal: č
- Hex: č
- css:before \010d
- alert(): \u010d
- Decimal: Ď
- Hex: Ď
- css:before \010e
- alert(): \u010e
- Decimal: ď
- Hex: ď
- css:before \010f
- alert(): \u010f
- Decimal: Đ
- Hex: Đ
- css:before \0110
- alert(): \u0110
- Decimal: đ
- Hex: đ
- css:before \0111
- alert(): \u0111
- Decimal: Ē
- Hex: Ē
- css:before \0112
- alert(): \u0112
- Decimal: ē
- Hex: ē
- css:before \0113
- alert(): \u0113
- Decimal: Ĕ
- Hex: Ĕ
- css:before \0114
- alert(): \u0114
- Decimal: ĕ
- Hex: ĕ
- css:before \0115
- alert(): \u0115
- Decimal: Ė
- Hex: Ė
- css:before \0116
- alert(): \u0116
- Decimal: ė
- Hex: ė
- css:before \0117
- alert(): \u0117
- Decimal: Ę
- Hex: Ę
- css:before \0118
- alert(): \u0118
- Decimal: ę
- Hex: ę
- css:before \0119
- alert(): \u0119
- Decimal: Ě
- Hex: Ě
- css:before \011a
- alert(): \u011a
- Decimal: ě
- Hex: ě
- css:before \011b
- alert(): \u011b
- Decimal: Ĝ
- Hex: Ĝ
- css:before \011c
- alert(): \u011c
- Decimal: ĝ
- Hex: ĝ
- css:before \011d
- alert(): \u011d
- Decimal: Ğ
- Hex: Ğ
- css:before \011e
- alert(): \u011e
- Decimal: ğ
- Hex: ğ
- css:before \011f
- alert(): \u011f
- Decimal: Ġ
- Hex: Ġ
- css:before \0120
- alert(): \u0120
- Decimal: ġ
- Hex: ġ
- css:before \0121
- alert(): \u0121
- Decimal: Ģ
- Hex: Ģ
- css:before \0122
- alert(): \u0122
- Decimal: ģ
- Hex: ģ
- css:before \0123
- alert(): \u0123
- Decimal: Ĥ
- Hex: Ĥ
- css:before \0124
- alert(): \u0124
- Decimal: ĥ
- Hex: ĥ
- css:before \0125
- alert(): \u0125
- Decimal: Ħ
- Hex: Ħ
- css:before \0126
- alert(): \u0126
- Decimal: ħ
- Hex: ħ
- css:before \0127
- alert(): \u0127
- Decimal: Ĩ
- Hex: Ĩ
- css:before \0128
- alert(): \u0128
- Decimal: ĩ
- Hex: ĩ
- css:before \0129
- alert(): \u0129
- Decimal: Ī
- Hex: Ī
- css:before \012a
- alert(): \u012a
- Decimal: ī
- Hex: ī
- css:before \012b
- alert(): \u012b
- Decimal: Ĭ
- Hex: Ĭ
- css:before \012c
- alert(): \u012c
- Decimal: ĭ
- Hex: ĭ
- css:before \012d
- alert(): \u012d
- Decimal: Į
- Hex: Į
- css:before \012e
- alert(): \u012e
- Decimal: į
- Hex: į
- css:before \012f
- alert(): \u012f
- Decimal: İ
- Hex: İ
- css:before \0130
- alert(): \u0130
- Decimal: ı
- Hex: ı
- css:before \0131
- alert(): \u0131
- Decimal: IJ
- Hex: IJ
- css:before \0132
- alert(): \u0132
- Decimal: ij
- Hex: ij
- css:before \0133
- alert(): \u0133
- Decimal: Ĵ
- Hex: Ĵ
- css:before \0134
- alert(): \u0134
- Decimal: ĵ
- Hex: ĵ
- css:before \0135
- alert(): \u0135
- Decimal: Ķ
- Hex: Ķ
- css:before \0136
- alert(): \u0136
- Decimal: ķ
- Hex: ķ
- css:before \0137
- alert(): \u0137
- Decimal: ĸ
- Hex: ĸ
- css:before \0138
- alert(): \u0138
- Decimal: Ĺ
- Hex: Ĺ
- css:before \0139
- alert(): \u0139
- Decimal: ĺ
- Hex: ĺ
- css:before \013a
- alert(): \u013a
- Decimal: Ļ
- Hex: Ļ
- css:before \013b
- alert(): \u013b
- Decimal: ļ
- Hex: ļ
- css:before \013c
- alert(): \u013c
- Decimal: Ľ
- Hex: Ľ
- css:before \013d
- alert(): \u013d
- Decimal: ľ
- Hex: ľ
- css:before \013e
- alert(): \u013e
- Decimal: Ŀ
- Hex: Ŀ
- css:before \013f
- alert(): \u013f
- Decimal: ŀ
- Hex: ŀ
- css:before \0140
- alert(): \u0140
- Decimal: Ł
- Hex: Ł
- css:before \0141
- alert(): \u0141
- Decimal: ł
- Hex: ł
- css:before \0142
- alert(): \u0142
- Decimal: Ń
- Hex: Ń
- css:before \0143
- alert(): \u0143
- Decimal: ń
- Hex: ń
- css:before \0144
- alert(): \u0144
- Decimal: Ņ
- Hex: Ņ
- css:before \0145
- alert(): \u0145
- Decimal: ņ
- Hex: ņ
- css:before \0146
- alert(): \u0146
- Decimal: Ň
- Hex: Ň
- css:before \0147
- alert(): \u0147
- Decimal: ň
- Hex: ň
- css:before \0148
- alert(): \u0148
- Decimal: ʼn
- Hex: ʼn
- css:before \0149
- alert(): \u0149
- Decimal: Ŋ
- Hex: Ŋ
- css:before \014a
- alert(): \u014a
- Decimal: ŋ
- Hex: ŋ
- css:before \014b
- alert(): \u014b
- Decimal: Ō
- Hex: Ō
- css:before \014c
- alert(): \u014c
- Decimal: ō
- Hex: ō
- css:before \014d
- alert(): \u014d
- Decimal: Ŏ
- Hex: Ŏ
- css:before \014e
- alert(): \u014e
- Decimal: ŏ
- Hex: ŏ
- css:before \014f
- alert(): \u014f
- Decimal: Ő
- Hex: Ő
- css:before \0150
- alert(): \u0150
- Decimal: ő
- Hex: ő
- css:before \0151
- alert(): \u0151
- Decimal: Œ
- Hex: Œ
- css:before \0152
- alert(): \u0152
- Decimal: œ
- Hex: œ
- css:before \0153
- alert(): \u0153
- Decimal: Ŗ
- Hex: Ŗ
- css:before \0156
- alert(): \u0156
- Decimal: ŗ
- Hex: ŗ
- css:before \0157
- alert(): \u0157
- Decimal: Ř
- Hex: Ř
- css:before \0158
- alert(): \u0158
- Decimal: ř
- Hex: ř
- css:before \0159
- alert(): \u0159
- Decimal: Ś
- Hex: Ś
- css:before \015a
- alert(): \u015a
- Decimal: ś
- Hex: ś
- css:before \015b
- alert(): \u015b
- Decimal: Ŝ
- Hex: Ŝ
- css:before \015c
- alert(): \u015c
- Decimal: ŝ
- Hex: ŝ
- css:before \015d
- alert(): \u015d
- Decimal: Ş
- Hex: Ş
- css:before \015e
- alert(): \u015e
- Decimal: ş
- Hex: ş
- css:before \015f
- alert(): \u015f
- Decimal: Š
- Hex: Š
- css:before \0160
- alert(): \u0160
- Decimal: š
- Hex: š
- css:before \0161
- alert(): \u0161
- Decimal: Ţ
- Hex: Ţ
- css:before \0162
- alert(): \u0162
- Decimal: ţ
- Hex: ţ
- css:before \0163
- alert(): \u0163
- Decimal: Ť
- Hex: Ť
- css:before \0164
- alert(): \u0164
- Decimal: ť
- Hex: ť
- css:before \0165
- alert(): \u0165
- Decimal: Ŧ
- Hex: Ŧ
- css:before \0166
- alert(): \u0166
- Decimal: ŧ
- Hex: ŧ
- css:before \0167
- alert(): \u0167
- Decimal: Ũ
- Hex: Ũ
- css:before \0168
- alert(): \u0168
- Decimal: ũ
- Hex: ũ
- css:before \0169
- alert(): \u0169
- Decimal: Ū
- Hex: Ū
- css:before \016a
- alert(): \u016a
- Decimal: ū
- Hex: ū
- css:before \016b
- alert(): \u016b
- Decimal: Ŭ
- Hex: Ŭ
- css:before \016c
- alert(): \u016c
- Decimal: ŭ
- Hex: ŭ
- css:before \016d
- alert(): \u016d
- Decimal: Ů
- Hex: Ů
- css:before \016e
- alert(): \u016e
- Decimal: ů
- Hex: ů
- css:before \016f
- alert(): \u016f
- Decimal: Ű
- Hex: Ű
- css:before \0170
- alert(): \u0170
- Decimal: ű
- Hex: ű
- css:before \0171
- alert(): \u0171
- Decimal: Ų
- Hex: Ų
- css:before \0172
- alert(): \u0172
- Decimal: ų
- Hex: ų
- css:before \0173
- alert(): \u0173
- Decimal: Ŵ
- Hex: Ŵ
- css:before \0174
- alert(): \u0174
- Decimal: ŵ
- Hex: ŵ
- css:before \0175
- alert(): \u0175
- Decimal: Ŷ
- Hex: Ŷ
- css:before \0176
- alert(): \u0176
- Decimal: ŷ
- Hex: ŷ
- css:before \0177
- alert(): \u0177
- Decimal: Ÿ
- Hex: Ÿ
- css:before \0178
- alert(): \u0178
- Decimal: Ź
- Hex: Ź
- css:before \0179
- alert(): \u0179
- Decimal: ź
- Hex: ź
- css:before \017a
- alert(): \u017a
- Decimal: Ż
- Hex: Ż
- css:before \017b
- alert(): \u017b
- Decimal: ż
- Hex: ż
- css:before \017c
- alert(): \u017c
- Decimal: Ž
- Hex: Ž
- css:before \017d
- alert(): \u017d
- Decimal: ž
- Hex: ž
- css:before \017e
- alert(): \u017e
Punctuación
! | " | # | $ | % | & | ' |
( | ) | * | + | , | - | . |
/ | : | ; | < | = | > | ? |
@ | [ | \ | ] | ^ | _ | ` |
{ | | | } | ~ | € | ¡ | ¿ |
– | — | ― | ‖ | ‗ | ‘ | ’ |
‚ | ‛ | “ | ” | „ | ‟ | † |
‡ | • | ‣ | ․ | ‥ | … | ‧ |
‰ | ‱ | ′ | ″ | ‴ | ‵ | ‶ |
‷ | ‸ | ‹ | › | ※ | ‼ | ‽ |
‾ | ‿ | ⁀ | ⁁ | ⁂ | ⁃ | ⁄ |
- Decimal: !
- Hex: !
- css:before \021
- alert(): \41
- Decimal: "
- Hex: "
- css:before \022
- alert(): \42
- Decimal: #
- Hex: #
- css:before \023
- alert(): \43
- Decimal: $
- Hex: $
- css:before \024
- alert(): \44
- Decimal: %
- Hex: %
- css:before \025
- alert(): \45
- Decimal: &
- Hex: &
- css:before \026
- alert(): \46
- Decimal: '
- Hex: '
- css:before \027
- alert(): \47
- Decimal: (
- Hex: (
- css:before \028
- alert(): \50
- Decimal: )
- Hex: )
- css:before \029
- alert(): \51
- Decimal: *
- Hex: *
- css:before \02a
- alert(): \52
- Decimal: +
- Hex: +
- css:before \02b
- alert(): \53
- Decimal: ,
- Hex: ,
- css:before \02c
- alert(): \54
- Decimal: -
- Hex: -
- css:before \02d
- alert(): \55
- Decimal: .
- Hex: .
- css:before \02e
- alert(): \56
- Decimal: /
- Hex: /
- css:before \02f
- alert(): \57
- Decimal: :
- Hex: :
- css:before \03a
- alert(): \72
- Decimal: ;
- Hex: ;
- css:before \03b
- alert(): \73
- Decimal: <
- Hex: <
- css:before \03c
- alert(): \74
- Decimal: =
- Hex: =
- css:before \03d
- alert(): \75
- Decimal: >
- Hex: >
- css:before \03e
- alert(): \76
- Decimal: ?
- Hex: ?
- css:before \03f
- alert(): \77
- Decimal: @
- Hex: @
- css:before \040
- alert(): \100
- Decimal: [
- Hex: [
- css:before \05b
- alert(): \133
- Decimal: \
- Hex: \
- css:before \05c
- alert(): \134
- Decimal: ]
- Hex: ]
- css:before \05d
- alert(): \135
- Decimal: ^
- Hex: ^
- css:before \05e
- alert(): \136
- Decimal: _
- Hex: _
- css:before \05f
- alert(): \137
- Decimal: `
- Hex: `
- css:before \060
- alert(): \140
- Decimal: {
- Hex: {
- css:before \07b
- alert(): \173
- Decimal: |
- Hex: |
- css:before \07c
- alert(): \174
- Decimal: }
- Hex: }
- css:before \07d
- alert(): \175
- Decimal: ~
- Hex: ~
- css:before \07e
- alert(): \176
- Decimal: €
- Hex: €
- css:before \020ac
- alert(): \u20ac
- Decimal: ¡
- Hex: ¡
- css:before \0a1
- alert(): \241
- Decimal: ¿
- Hex: ¿
- css:before \0bf
- alert(): \277
- Decimal: –
- Hex: –
- css:before \02013
- alert(): \u2013
- Decimal: —
- Hex: —
- css:before \02014
- alert(): \u2014
- Decimal: ―
- Hex: ―
- css:before \02015
- alert(): \u2015
- Decimal: ‖
- Hex: ‖
- css:before \02016
- alert(): \u2016
- Decimal: ‗
- Hex: ‗
- css:before \02017
- alert(): \u2017
- Decimal: ‘
- Hex: ‘
- css:before \02018
- alert(): \u2018
- Decimal: ’
- Hex: ’
- css:before \02019
- alert(): \u2019
- Decimal: ‚
- Hex: ‚
- css:before \0201a
- alert(): \u201a
- Decimal: ‛
- Hex: ‛
- css:before \0201b
- alert(): \u201b
- Decimal: “
- Hex: “
- css:before \0201c
- alert(): \u201c
- Decimal: ”
- Hex: ”
- css:before \0201d
- alert(): \u201d
- Decimal: „
- Hex: „
- css:before \0201e
- alert(): \u201e
- Decimal: ‟
- Hex: ‟
- css:before \0201f
- alert(): \u201f
- Decimal: †
- Hex: †
- css:before \02020
- alert(): \u2020
- Decimal: ‡
- Hex: ‡
- css:before \02021
- alert(): \u2021
- Decimal: •
- Hex: •
- css:before \02022
- alert(): \u2022
- Decimal: ‣
- Hex: ‣
- css:before \02023
- alert(): \u2023
- Decimal: ․
- Hex: ․
- css:before \02024
- alert(): \u2024
- Decimal: ‥
- Hex: ‥
- css:before \02025
- alert(): \u2025
- Decimal: …
- Hex: …
- css:before \02026
- alert(): \u2026
- Decimal: ‧
- Hex: ‧
- css:before \02027
- alert(): \u2027
- Decimal: ‰
- Hex: ‰
- css:before \02030
- alert(): \u2030
- Decimal: ‱
- Hex: ‱
- css:before \02031
- alert(): \u2031
- Decimal: ′
- Hex: ′
- css:before \02032
- alert(): \u2032
- Decimal: ″
- Hex: ″
- css:before \02033
- alert(): \u2033
- Decimal: ‴
- Hex: ‴
- css:before \02034
- alert(): \u2034
- Decimal: ‵
- Hex: ‵
- css:before \02035
- alert(): \u2035
- Decimal: ‶
- Hex: ‶
- css:before \02036
- alert(): \u2036
- Decimal: ‷
- Hex: ‷
- css:before \02037
- alert(): \u2037
- Decimal: ‸
- Hex: ‸
- css:before \02038
- alert(): \u2038
- Decimal: ‹
- Hex: ‹
- css:before \02039
- alert(): \u2039
- Decimal: ›
- Hex: ›
- css:before \0203a
- alert(): \u203a
- Decimal: ※
- Hex: ※
- css:before \0203b
- alert(): \u203b
- Decimal: ‼
- Hex: ‼
- css:before \0203c
- alert(): \u203c
- Decimal: ‽
- Hex: ‽
- css:before \0203d
- alert(): \u203d
- Decimal: ‾
- Hex: ‾
- css:before \0203e
- alert(): \u203e
- Decimal: ‿
- Hex: ‿
- css:before \0203f
- alert(): \u203f
- Decimal: ⁀
- Hex: ⁀
- css:before \02040
- alert(): \u2040
- Decimal: ⁁
- Hex: ⁁
- css:before \02041
- alert(): \u2041
- Decimal: ⁂
- Hex: ⁂
- css:before \02042
- alert(): \u2042
- Decimal: ⁃
- Hex: ⁃
- css:before \02043
- alert(): \u2043
- Decimal: ⁄
- Hex: ⁄
- css:before \02044
- alert(): \u2044
Flechas
← | ↑ | → | ↓ | ↔ | ↕ | ↖ |
↗ | ↘ | ↙ | ↚ | ↛ | ↜ | ↝ |
↞ | ↟ | ↠ | ↡ | ↢ | ↣ | ↤ |
↥ | ↦ | ↧ | ↨ | ↩ | ↪ | ↫ |
↬ | ↭ | ↮ | ↯ | ↰ | ↱ | ↲ |
↳ | ↴ | ↵ | ↶ | ↷ | ↸ | ↹ |
↺ | ↻ | ↼ | ↽ | ↾ | ↿ | ⇀ |
⇁ | ⇂ | ⇃ | ⇄ | ⇅ | ⇆ | ⇇ |
⇈ | ⇉ | ⇊ | ⇋ | ⇌ | ⇍ | ⇎ |
⇏ | ⇐ | ⇑ | ⇒ | ⇓ | ⇔ | ⇕ |
⇖ | ⇗ | ⇘ | ⇙ | ⇚ | ⇛ | ⇜ |
⇝ | ⇞ | ⇟ | ⇠ | ⇡ | ⇢ | ⇣ |
⇤ | ⇥ | ⇦ | ⇧ | ⇨ | ⇩ | ⇪ |
⇫ | ⇬ | ⇭ | ⇮ | ⇯ | ⇰ | ⇱ |
⇲ | ⇳ | ⇴ | ⇵ | ⇶ | ⇷ | ⇸ |
⇹ | ⇺ | ⇻ | ⇼ | ⇽ | ⇾ | ⇿ |
➘ | ➙ | ➚ | ➛ | ➜ | ➝ | ➞ |
➟ | ➠ | ➡ | ➢ | ➣ | ➤ | ➥ |
➦ | ➧ | ➨ | ➩ | ➪ | ➫ | ➬ |
➭ | ➮ | ➯ | ➱ | ➲ | ➳ | ➴ |
➵ | ➶ | ➷ | ➸ | ➹ | ➺ | ➻ |
➼ | ➽ |
- Decimal: ←
- Hex: ←
- css:before \02190
- alert(): \u2190
- Decimal: ↑
- Hex: ↑
- css:before \02191
- alert(): \u2191
- Decimal: →
- Hex: →
- css:before \02192
- alert(): \u2192
- Decimal: ↓
- Hex: ↓
- css:before \02193
- alert(): \u2193
- Decimal: ↔
- Hex: ↔
- css:before \02194
- alert(): \u2194
- Decimal: ↕
- Hex: ↕
- css:before \02195
- alert(): \u2195
- Decimal: ↖
- Hex: ↖
- css:before \02196
- alert(): \u2196
- Decimal: ↗
- Hex: ↗
- css:before \02197
- alert(): \u2197
- Decimal: ↘
- Hex: ↘
- css:before \02198
- alert(): \u2198
- Decimal: ↙
- Hex: ↙
- css:before \02199
- alert(): \u2199
- Decimal: ↚
- Hex: ↚
- css:before \0219a
- alert(): \u219a
- Decimal: ↛
- Hex: ↛
- css:before \0219b
- alert(): \u219b
- Decimal: ↜
- Hex: ↜
- css:before \0219c
- alert(): \u219c
- Decimal: ↝
- Hex: ↝
- css:before \0219d
- alert(): \u219d
- Decimal: ↞
- Hex: ↞
- css:before \0219e
- alert(): \u219e
- Decimal: ↟
- Hex: ↟
- css:before \0219f
- alert(): \u219f
- Decimal: ↠
- Hex: ↠
- css:before \021a0
- alert(): \u21a0
- Decimal: ↡
- Hex: ↡
- css:before \021a1
- alert(): \u21a1
- Decimal: ↢
- Hex: ↢
- css:before \021a2
- alert(): \u21a2
- Decimal: ↣
- Hex: ↣
- css:before \021a3
- alert(): \u21a3
- Decimal: ↤
- Hex: ↤
- css:before \021a4
- alert(): \u21a4
- Decimal: ↥
- Hex: ↥
- css:before \021a5
- alert(): \u21a5
- Decimal: ↦
- Hex: ↦
- css:before \021a6
- alert(): \u21a6
- Decimal: ↧
- Hex: ↧
- css:before \021a7
- alert(): \u21a7
- Decimal: ↨
- Hex: ↨
- css:before \021a8
- alert(): \u21a8
- Decimal: ↩
- Hex: ↩
- css:before \021a9
- alert(): \u21a9
- Decimal: ↪
- Hex: ↪
- css:before \021aa
- alert(): \u21aa
- Decimal: ↫
- Hex: ↫
- css:before \021ab
- alert(): \u21ab
- Decimal: ↬
- Hex: ↬
- css:before \021ac
- alert(): \u21ac
- Decimal: ↭
- Hex: ↭
- css:before \021ad
- alert(): \u21ad
- Decimal: ↮
- Hex: ↮
- css:before \021ae
- alert(): \u21ae
- Decimal: ↯
- Hex: ↯
- css:before \021af
- alert(): \u21af
- Decimal: ↰
- Hex: ↰
- css:before \021b0
- alert(): \u21b0
- Decimal: ↱
- Hex: ↱
- css:before \021b1
- alert(): \u21b1
- Decimal: ↲
- Hex: ↲
- css:before \021b2
- alert(): \u21b2
- Decimal: ↳
- Hex: ↳
- css:before \021b3
- alert(): \u21b3
- Decimal: ↴
- Hex: ↴
- css:before \021b4
- alert(): \u21b4
- Decimal: ↵
- Hex: ↵
- css:before \021b5
- alert(): \u21b5
- Decimal: ↶
- Hex: ↶
- css:before \021b6
- alert(): \u21b6
- Decimal: ↷
- Hex: ↷
- css:before \021b7
- alert(): \u21b7
- Decimal: ↸
- Hex: ↸
- css:before \021b8
- alert(): \u21b8
- Decimal: ↹
- Hex: ↹
- css:before \021b9
- alert(): \u21b9
- Decimal: ↺
- Hex: ↺
- css:before \021ba
- alert(): \u21ba
- Decimal: ↻
- Hex: ↻
- css:before \021bb
- alert(): \u21bb
- Decimal: ↼
- Hex: ↼
- css:before \021bc
- alert(): \u21bc
- Decimal: ↽
- Hex: ↽
- css:before \021bd
- alert(): \u21bd
- Decimal: ↾
- Hex: ↾
- css:before \021be
- alert(): \u21be
- Decimal: ↿
- Hex: ↿
- css:before \021bf
- alert(): \u21bf
- Decimal: ⇀
- Hex: ⇀
- css:before \021c0
- alert(): \u21c0
- Decimal: ⇁
- Hex: ⇁
- css:before \021c1
- alert(): \u21c1
- Decimal: ⇂
- Hex: ⇂
- css:before \021c2
- alert(): \u21c2
- Decimal: ⇃
- Hex: ⇃
- css:before \021c3
- alert(): \u21c3
- Decimal: ⇄
- Hex: ⇄
- css:before \021c4
- alert(): \u21c4
- Decimal: ⇅
- Hex: ⇅
- css:before \021c5
- alert(): \u21c5
- Decimal: ⇆
- Hex: ⇆
- css:before \021c6
- alert(): \u21c6
- Decimal: ⇇
- Hex: ⇇
- css:before \021c7
- alert(): \u21c7
- Decimal: ⇈
- Hex: ⇈
- css:before \021c8
- alert(): \u21c8
- Decimal: ⇉
- Hex: ⇉
- css:before \021c9
- alert(): \u21c9
- Decimal: ⇊
- Hex: ⇊
- css:before \021ca
- alert(): \u21ca
- Decimal: ⇋
- Hex: ⇋
- css:before \021cb
- alert(): \u21cb
- Decimal: ⇌
- Hex: ⇌
- css:before \021cc
- alert(): \u21cc
- Decimal: ⇍
- Hex: ⇍
- css:before \021cd
- alert(): \u21cd
- Decimal: ⇎
- Hex: ⇎
- css:before \021ce
- alert(): \u21ce
- Decimal: ⇏
- Hex: ⇏
- css:before \021cf
- alert(): \u21cf
- Decimal: ⇐
- Hex: ⇐
- css:before \021d0
- alert(): \u21d0
- Decimal: ⇑
- Hex: ⇑
- css:before \021d1
- alert(): \u21d1
- Decimal: ⇒
- Hex: ⇒
- css:before \021d2
- alert(): \u21d2
- Decimal: ⇓
- Hex: ⇓
- css:before \021d3
- alert(): \u21d3
- Decimal: ⇔
- Hex: ⇔
- css:before \021d4
- alert(): \u21d4
- Decimal: ⇕
- Hex: ⇕
- css:before \021d5
- alert(): \u21d5
- Decimal: ⇖
- Hex: ⇖
- css:before \021d6
- alert(): \u21d6
- Decimal: ⇗
- Hex: ⇗
- css:before \021d7
- alert(): \u21d7
- Decimal: ⇘
- Hex: ⇘
- css:before \021d8
- alert(): \u21d8
- Decimal: ⇙
- Hex: ⇙
- css:before \021d9
- alert(): \u21d9
- Decimal: ⇚
- Hex: ⇚
- css:before \021da
- alert(): \u21da
- Decimal: ⇛
- Hex: ⇛
- css:before \021db
- alert(): \u21db
- Decimal: ⇜
- Hex: ⇜
- css:before \021dc
- alert(): \u21dc
- Decimal: ⇝
- Hex: ⇝
- css:before \021dd
- alert(): \u21dd
- Decimal: ⇞
- Hex: ⇞
- css:before \021de
- alert(): \u21de
- Decimal: ⇟
- Hex: ⇟
- css:before \021df
- alert(): \u21df
- Decimal: ⇠
- Hex: ⇠
- css:before \021e0
- alert(): \u21e0
- Decimal: ⇡
- Hex: ⇡
- css:before \021e1
- alert(): \u21e1
- Decimal: ⇢
- Hex: ⇢
- css:before \021e2
- alert(): \u21e2
- Decimal: ⇣
- Hex: ⇣
- css:before \021e3
- alert(): \u21e3
- Decimal: ⇤
- Hex: ⇤
- css:before \021e4
- alert(): \u21e4
- Decimal: ⇥
- Hex: ⇥
- css:before \021e5
- alert(): \u21e5
- Decimal: ⇦
- Hex: ⇦
- css:before \021e6
- alert(): \u21e6
- Decimal: ⇧
- Hex: ⇧
- css:before \021e7
- alert(): \u21e7
- Decimal: ⇨
- Hex: ⇨
- css:before \021e8
- alert(): \u21e8
- Decimal: ⇩
- Hex: ⇩
- css:before \021e9
- alert(): \u21e9
- Decimal: ⇪
- Hex: ⇪
- css:before \021ea
- alert(): \u21ea
- Decimal: ⇫
- Hex: ⇫
- css:before \021eb
- alert(): \u21eb
- Decimal: ⇬
- Hex: ⇬
- css:before \021ec
- alert(): \u21ec
- Decimal: ⇭
- Hex: ⇭
- css:before \021ed
- alert(): \u21ed
- Decimal: ⇮
- Hex: ⇮
- css:before \021ee
- alert(): \u21ee
- Decimal: ⇯
- Hex: ⇯
- css:before \021ef
- alert(): \u21ef
- Decimal: ⇰
- Hex: ⇰
- css:before \021f0
- alert(): \u21f0
- Decimal: ⇱
- Hex: ⇱
- css:before \021f1
- alert(): \u21f1
- Decimal: ⇲
- Hex: ⇲
- css:before \021f2
- alert(): \u21f2
- Decimal: ⇳
- Hex: ⇳
- css:before \021f3
- alert(): \u21f3
- Decimal: ⇴
- Hex: ⇴
- css:before \021f4
- alert(): \u21f4
- Decimal: ⇵
- Hex: ⇵
- css:before \021f5
- alert(): \u21f5
- Decimal: ⇶
- Hex: ⇶
- css:before \021f6
- alert(): \u21f6
- Decimal: ⇷
- Hex: ⇷
- css:before \021f7
- alert(): \u21f7
- Decimal: ⇸
- Hex: ⇸
- css:before \021f8
- alert(): \u21f8
- Decimal: ⇹
- Hex: ⇹
- css:before \021f9
- alert(): \u21f9
- Decimal: ⇺
- Hex: ⇺
- css:before \021fa
- alert(): \u21fa
- Decimal: ⇻
- Hex: ⇻
- css:before \021fb
- alert(): \u21fb
- Decimal: ⇼
- Hex: ⇼
- css:before \021fc
- alert(): \u21fc
- Decimal: ⇽
- Hex: ⇽
- css:before \021fd
- alert(): \u21fd
- Decimal: ⇾
- Hex: ⇾
- css:before \021fe
- alert(): \u21fe
- Decimal: ⇿
- Hex: ⇿
- css:before \021ff
- alert(): \u21ff
- Decimal: ➘
- Hex: ➘
- css:before \02798
- alert(): \u2798
- Decimal: ➙
- Hex: ➙
- css:before \02799
- alert(): \u2799
- Decimal: ➚
- Hex: ➚
- css:before \0279a
- alert(): \u279a
- Decimal: ➛
- Hex: ➛
- css:before \0279b
- alert(): \u279b
- Decimal: ➜
- Hex: ➜
- css:before \0279c
- alert(): \u279c
- Decimal: ➝
- Hex: ➝
- css:before \0279d
- alert(): \u279d
- Decimal: ➞
- Hex: ➞
- css:before \0279e
- alert(): \u279e
- Decimal: ➟
- Hex: ➟
- css:before \0279f
- alert(): \u279f
- Decimal: ➠
- Hex: ➠
- css:before \027a0
- alert(): \u27a0
- Decimal: ➡
- Hex: ➡
- css:before \027a1
- alert(): \u27a1
- Decimal: ➢
- Hex: ➢
- css:before \027a2
- alert(): \u27a2
- Decimal: ➣
- Hex: ➣
- css:before \027a3
- alert(): \u27a3
- Decimal: ➤
- Hex: ➤
- css:before \027a4
- alert(): \u27a4
- Decimal: ➥
- Hex: ➥
- css:before \027a5
- alert(): \u27a5
- Decimal: ➦
- Hex: ➦
- css:before \027a6
- alert(): \u27a6
- Decimal: ➧
- Hex: ➧
- css:before \027a7
- alert(): \u27a7
- Decimal: ➨
- Hex: ➨
- css:before \027a8
- alert(): \u27a8
- Decimal: ➩
- Hex: ➩
- css:before \027a9
- alert(): \u27a9
- Decimal: ➪
- Hex: ➪
- css:before \027aa
- alert(): \u27aa
- Decimal: ➫
- Hex: ➫
- css:before \027ab
- alert(): \u27ab
- Decimal: ➬
- Hex: ➬
- css:before \027ac
- alert(): \u27ac
- Decimal: ➭
- Hex: ➭
- css:before \027ad
- alert(): \u27ad
- Decimal: ➮
- Hex: ➮
- css:before \027ae
- alert(): \u27ae
- Decimal: ➯
- Hex: ➯
- css:before \027af
- alert(): \u27af
- Decimal: ➱
- Hex: ➱
- css:before \027b1
- alert(): \u27b1
- Decimal: ➲
- Hex: ➲
- css:before \027b2
- alert(): \u27b2
- Decimal: ➳
- Hex: ➳
- css:before \027b3
- alert(): \u27b3
- Decimal: ➴
- Hex: ➴
- css:before \027b4
- alert(): \u27b4
- Decimal: ➵
- Hex: ➵
- css:before \027b5
- alert(): \u27b5
- Decimal: ➶
- Hex: ➶
- css:before \027b6
- alert(): \u27b6
- Decimal: ➷
- Hex: ➷
- css:before \027b7
- alert(): \u27b7
- Decimal: ➸
- Hex: ➸
- css:before \027b8
- alert(): \u27b8
- Decimal: ➹
- Hex: ➹
- css:before \027b9
- alert(): \u27b9
- Decimal: ➺
- Hex: ➺
- css:before \027ba
- alert(): \u27ba
- Decimal: ➻
- Hex: ➻
- css:before \027bb
- alert(): \u27bb
- Decimal: ➼
- Hex: ➼
- css:before \027bc
- alert(): \u27bc
- Decimal: ➽
- Hex: ➽
- css:before \027bd
- alert(): \u27bd
Formas geométricas
■ | □ | ▢ | ▣ | ▤ | ▥ | ▦ |
▧ | ▨ | ▩ | ▪ | ▫ | ▬ | ▭ |
▮ | ▯ | ▰ | ▱ | ▲ | △ | ▴ |
▵ | ▶ | ▷ | ▸ | ▹ | ► | ▻ |
▼ | ▽ | ▾ | ▿ | ◀ | ◁ | ◂ |
◃ | ◄ | ◅ | ◆ | ◇ | ◈ | ◉ |
◊ | ○ | ◌ | ◍ | ◎ | ● | ◐ |
◑ | ◒ | ◓ | ◔ | ◕ | ◖ | ◗ |
◘ | ◙ | ◚ | ◛ | ◜ | ◝ | ◞ |
◟ | ◠ | ◡ | ◢ | ◣ | ◤ | ◥ |
◦ | ◧ | ◨ | ◩ | ◪ | ◫ | ◬ |
◭ | ◮ | ◯ | ◰ | ◱ | ◲ | ◳ |
◴ | ◵ | ◶ | ◷ | ◸ | ◹ | ◺ |
◻ | ◼ | ◽ | ◾ | ◿ |
- Decimal: ■
- Hex: ■
- css:before \025a0
- alert(): \u25a0
- Decimal: □
- Hex: □
- css:before \025a1
- alert(): \u25a1
- Decimal: ▢
- Hex: ▢
- css:before \025a2
- alert(): \u25a2
- Decimal: ▣
- Hex: ▣
- css:before \025a3
- alert(): \u25a3
- Decimal: ▤
- Hex: ▤
- css:before \025a4
- alert(): \u25a4
- Decimal: ▥
- Hex: ▥
- css:before \025a5
- alert(): \u25a5
- Decimal: ▦
- Hex: ▦
- css:before \025a6
- alert(): \u25a6
- Decimal: ▧
- Hex: ▧
- css:before \025a7
- alert(): \u25a7
- Decimal: ▨
- Hex: ▨
- css:before \025a8
- alert(): \u25a8
- Decimal: ▩
- Hex: ▩
- css:before \025a9
- alert(): \u25a9
- Decimal: ▪
- Hex: ▪
- css:before \025aa
- alert(): \u25aa
- Decimal: ▫
- Hex: ▫
- css:before \025ab
- alert(): \u25ab
- Decimal: ▬
- Hex: ▬
- css:before \025ac
- alert(): \u25ac
- Decimal: ▭
- Hex: ▭
- css:before \025ad
- alert(): \u25ad
- Decimal: ▮
- Hex: ▮
- css:before \025ae
- alert(): \u25ae
- Decimal: ▯
- Hex: ▯
- css:before \025af
- alert(): \u25af
- Decimal: ▰
- Hex: ▰
- css:before \025b0
- alert(): \u25b0
- Decimal: ▱
- Hex: ▱
- css:before \025b1
- alert(): \u25b1
- Decimal: ▲
- Hex: ▲
- css:before \025b2
- alert(): \u25b2
- Decimal: △
- Hex: △
- css:before \025b3
- alert(): \u25b3
- Decimal: ▴
- Hex: ▴
- css:before \025b4
- alert(): \u25b4
- Decimal: ▵
- Hex: ▵
- css:before \025b5
- alert(): \u25b5
- Decimal: ▶
- Hex: ▶
- css:before \025b6
- alert(): \u25b6
- Decimal: ▷
- Hex: ▷
- css:before \025b7
- alert(): \u25b7
- Decimal: ▸
- Hex: ▸
- css:before \025b8
- alert(): \u25b8
- Decimal: ▹
- Hex: ▹
- css:before \025b9
- alert(): \u25b9
- Decimal: ►
- Hex: ►
- css:before \025ba
- alert(): \u25ba
- Decimal: ▻
- Hex: ▻
- css:before \025bb
- alert(): \u25bb
- Decimal: ▼
- Hex: ▼
- css:before \025bc
- alert(): \u25bc
- Decimal: ▽
- Hex: ▽
- css:before \025bd
- alert(): \u25bd
- Decimal: ▾
- Hex: ▾
- css:before \025be
- alert(): \u25be
- Decimal: ▿
- Hex: ▿
- css:before \025bf
- alert(): \u25bf
- Decimal: ◀
- Hex: ◀
- css:before \025c0
- alert(): \u25c0
- Decimal: ◁
- Hex: ◁
- css:before \025c1
- alert(): \u25c1
- Decimal: ◂
- Hex: ◂
- css:before \025c2
- alert(): \u25c2
- Decimal: ◃
- Hex: ◃
- css:before \025c3
- alert(): \u25c3
- Decimal: ◄
- Hex: ◄
- css:before \025c4
- alert(): \u25c4
- Decimal: ◅
- Hex: ◅
- css:before \025c5
- alert(): \u25c5
- Decimal: ◆
- Hex: ◆
- css:before \025c6
- alert(): \u25c6
- Decimal: ◇
- Hex: ◇
- css:before \025c7
- alert(): \u25c7
- Decimal: ◈
- Hex: ◈
- css:before \025c8
- alert(): \u25c8
- Decimal: ◉
- Hex: ◉
- css:before \025c9
- alert(): \u25c9
- Decimal: ◊
- Hex: ◊
- css:before \025ca
- alert(): \u25ca
- Decimal: ○
- Hex: ○
- css:before \025cb
- alert(): \u25cb
- Decimal: ◌
- Hex: ◌
- css:before \025cc
- alert(): \u25cc
- Decimal: ◍
- Hex: ◍
- css:before \025cd
- alert(): \u25cd
- Decimal: ◎
- Hex: ◎
- css:before \025ce
- alert(): \u25ce
- Decimal: ●
- Hex: ●
- css:before \025cf
- alert(): \u25cf
- Decimal: ◐
- Hex: ◐
- css:before \025d0
- alert(): \u25d0
- Decimal: ◑
- Hex: ◑
- css:before \025d1
- alert(): \u25d1
- Decimal: ◒
- Hex: ◒
- css:before \025d2
- alert(): \u25d2
- Decimal: ◓
- Hex: ◓
- css:before \025d3
- alert(): \u25d3
- Decimal: ◔
- Hex: ◔
- css:before \025d4
- alert(): \u25d4
- Decimal: ◕
- Hex: ◕
- css:before \025d5
- alert(): \u25d5
- Decimal: ◖
- Hex: ◖
- css:before \025d6
- alert(): \u25d6
- Decimal: ◗
- Hex: ◗
- css:before \025d7
- alert(): \u25d7
- Decimal: ◘
- Hex: ◘
- css:before \025d8
- alert(): \u25d8
- Decimal: ◙
- Hex: ◙
- css:before \025d9
- alert(): \u25d9
- Decimal: ◚
- Hex: ◚
- css:before \025da
- alert(): \u25da
- Decimal: ◛
- Hex: ◛
- css:before \025db
- alert(): \u25db
- Decimal: ◜
- Hex: ◜
- css:before \025dc
- alert(): \u25dc
- Decimal: ◝
- Hex: ◝
- css:before \025dd
- alert(): \u25dd
- Decimal: ◞
- Hex: ◞
- css:before \025de
- alert(): \u25de
- Decimal: ◟
- Hex: ◟
- css:before \025df
- alert(): \u25df
- Decimal: ◠
- Hex: ◠
- css:before \025e0
- alert(): \u25e0
- Decimal: ◡
- Hex: ◡
- css:before \025e1
- alert(): \u25e1
- Decimal: ◢
- Hex: ◢
- css:before \025e2
- alert(): \u25e2
- Decimal: ◣
- Hex: ◣
- css:before \025e3
- alert(): \u25e3
- Decimal: ◤
- Hex: ◤
- css:before \025e4
- alert(): \u25e4
- Decimal: ◥
- Hex: ◥
- css:before \025e5
- alert(): \u25e5
- Decimal: ◦
- Hex: ◦
- css:before \025e6
- alert(): \u25e6
- Decimal: ◧
- Hex: ◧
- css:before \025e7
- alert(): \u25e7
- Decimal: ◨
- Hex: ◨
- css:before \025e8
- alert(): \u25e8
- Decimal: ◩
- Hex: ◩
- css:before \025e9
- alert(): \u25e9
- Decimal: ◪
- Hex: ◪
- css:before \025ea
- alert(): \u25ea
- Decimal: ◫
- Hex: ◫
- css:before \025eb
- alert(): \u25eb
- Decimal: ◬
- Hex: ◬
- css:before \025ec
- alert(): \u25ec
- Decimal: ◭
- Hex: ◭
- css:before \025ed
- alert(): \u25ed
- Decimal: ◮
- Hex: ◮
- css:before \025ee
- alert(): \u25ee
- Decimal: ◯
- Hex: ◯
- css:before \025ef
- alert(): \u25ef
- Decimal: ◰
- Hex: ◰
- css:before \025f0
- alert(): \u25f0
- Decimal: ◱
- Hex: ◱
- css:before \025f1
- alert(): \u25f1
- Decimal: ◲
- Hex: ◲
- css:before \025f2
- alert(): \u25f2
- Decimal: ◳
- Hex: ◳
- css:before \025f3
- alert(): \u25f3
- Decimal: ◴
- Hex: ◴
- css:before \025f4
- alert(): \u25f4
- Decimal: ◵
- Hex: ◵
- css:before \025f5
- alert(): \u25f5
- Decimal: ◶
- Hex: ◶
- css:before \025f6
- alert(): \u25f6
- Decimal: ◷
- Hex: ◷
- css:before \025f7
- alert(): \u25f7
- Decimal: ◸
- Hex: ◸
- css:before \025f8
- alert(): \u25f8
- Decimal: ◹
- Hex: ◹
- css:before \025f9
- alert(): \u25f9
- Decimal: ◺
- Hex: ◺
- css:before \025fa
- alert(): \u25fa
- Decimal: ◻
- Hex: ◻
- css:before \025fb
- alert(): \u25fb
- Decimal: ◼
- Hex: ◼
- css:before \025fc
- alert(): \u25fc
- Decimal: ◽
- Hex: ◽
- css:before \025fd
- alert(): \u25fd
- Decimal: ◾
- Hex: ◾
- css:before \025fe
- alert(): \u25fe
- Decimal: ◿
- Hex: ◿
- css:before \025ff
- alert(): \u25ff
Alfabeto griego
Α | Β | Γ | Δ | Ε | Ζ | Η |
Θ | Ι | Κ | Λ | Μ | Ν | Ξ |
Ο | Π | Ρ | | Σ | Τ | Υ |
Φ | Χ | Ψ | Ω | Ϊ | Ϋ | ά |
έ | ΰ | α | β | γ | δ | ε |
ζ | η | θ | ι | κ | λ | μ |
ν | ξ | ο | π | ρ | ς | σ |
τ | υ | φ | χ | ψ | ω | ϊ |
ϋ | ό | ύ | ώ | ϐ | ϑ | ϒ |
ϓ | ϔ | ϕ | ϖ |
- Decimal: Α
- Hex: Α
- css:before \0391
- alert(): \u0391
- Decimal: Β
- Hex: Β
- css:before \0392
- alert(): \u0392
- Decimal: Γ
- Hex: Γ
- css:before \0393
- alert(): \u0393
- Decimal: Δ
- Hex: Δ
- css:before \0394
- alert(): \u0394
- Decimal: Ε
- Hex: Ε
- css:before \0395
- alert(): \u0395
- Decimal: Ζ
- Hex: Ζ
- css:before \0396
- alert(): \u0396
- Decimal: Η
- Hex: Η
- css:before \0397
- alert(): \u0397
- Decimal: Θ
- Hex: Θ
- css:before \0398
- alert(): \u0398
- Decimal: Ι
- Hex: Ι
- css:before \0399
- alert(): \u0399
- Decimal: Κ
- Hex: Κ
- css:before \039a
- alert(): \u039a
- Decimal: Λ
- Hex: Λ
- css:before \039b
- alert(): \u039b
- Decimal: Μ
- Hex: Μ
- css:before \039c
- alert(): \u039c
- Decimal: Ν
- Hex: Ν
- css:before \039d
- alert(): \u039d
- Decimal: Ξ
- Hex: Ξ
- css:before \039e
- alert(): \u039e
- Decimal: Ο
- Hex: Ο
- css:before \039f
- alert(): \u039f
- Decimal: Π
- Hex: Π
- css:before \03a0
- alert(): \u03a0
- Decimal: Ρ
- Hex: Ρ
- css:before \03a1
- alert(): \u03a1
- Decimal: ΢
- Hex: ΢
- css:before \03a2
- alert(): \u03a2
- Decimal: Σ
- Hex: Σ
- css:before \03a3
- alert(): \u03a3
- Decimal: Τ
- Hex: Τ
- css:before \03a4
- alert(): \u03a4
- Decimal: Υ
- Hex: Υ
- css:before \03a5
- alert(): \u03a5
- Decimal: Φ
- Hex: Φ
- css:before \03a6
- alert(): \u03a6
- Decimal: Χ
- Hex: Χ
- css:before \03a7
- alert(): \u03a7
- Decimal: Ψ
- Hex: Ψ
- css:before \03a8
- alert(): \u03a8
- Decimal: Ω
- Hex: Ω
- css:before \03a9
- alert(): \u03a9
- Decimal: Ϊ
- Hex: Ϊ
- css:before \03aa
- alert(): \u03aa
- Decimal: Ϋ
- Hex: Ϋ
- css:before \03ab
- alert(): \u03ab
- Decimal: ά
- Hex: ά
- css:before \03ac
- alert(): \u03ac
- Decimal: έ
- Hex: έ
- css:before \03ad
- alert(): \u03ad
- Decimal: ΰ
- Hex: ΰ
- css:before \03b0
- alert(): \u03b0
- Decimal: α
- Hex: α
- css:before \03b1
- alert(): \u03b1
- Decimal: β
- Hex: β
- css:before \03b2
- alert(): \u03b2
- Decimal: γ
- Hex: γ
- css:before \03b3
- alert(): \u03b3
- Decimal: δ
- Hex: δ
- css:before \03b4
- alert(): \u03b4
- Decimal: ε
- Hex: ε
- css:before \03b5
- alert(): \u03b5
- Decimal: ζ
- Hex: ζ
- css:before \03b6
- alert(): \u03b6
- Decimal: η
- Hex: η
- css:before \03b7
- alert(): \u03b7
- Decimal: θ
- Hex: θ
- css:before \03b8
- alert(): \u03b8
- Decimal: ι
- Hex: ι
- css:before \03b9
- alert(): \u03b9
- Decimal: κ
- Hex: κ
- css:before \03ba
- alert(): \u03ba
- Decimal: λ
- Hex: λ
- css:before \03bb
- alert(): \u03bb
- Decimal: μ
- Hex: μ
- css:before \03bc
- alert(): \u03bc
- Decimal: ν
- Hex: ν
- css:before \03bd
- alert(): \u03bd
- Decimal: ξ
- Hex: ξ
- css:before \03be
- alert(): \u03be
- Decimal: ο
- Hex: ο
- css:before \03bf
- alert(): \u03bf
- Decimal: π
- Hex: π
- css:before \03c0
- alert(): \u03c0
- Decimal: ρ
- Hex: ρ
- css:before \03c1
- alert(): \u03c1
- Decimal: ς
- Hex: ς
- css:before \03c2
- alert(): \u03c2
- Decimal: σ
- Hex: σ
- css:before \03c3
- alert(): \u03c3
- Decimal: τ
- Hex: τ
- css:before \03c4
- alert(): \u03c4
- Decimal: υ
- Hex: υ
- css:before \03c5
- alert(): \u03c5
- Decimal: φ
- Hex: φ
- css:before \03c6
- alert(): \u03c6
- Decimal: χ
- Hex: χ
- css:before \03c7
- alert(): \u03c7
- Decimal: ψ
- Hex: ψ
- css:before \03c8
- alert(): \u03c8
- Decimal: ω
- Hex: ω
- css:before \03c9
- alert(): \u03c9
- Decimal: ϊ
- Hex: ϊ
- css:before \03ca
- alert(): \u03ca
- Decimal: ϋ
- Hex: ϋ
- css:before \03cb
- alert(): \u03cb
- Decimal: ό
- Hex: ό
- css:before \03cc
- alert(): \u03cc
- Decimal: ύ
- Hex: ύ
- css:before \03cd
- alert(): \u03cd
- Decimal: ώ
- Hex: ώ
- css:before \03ce
- alert(): \u03ce
- Decimal: ϐ
- Hex: ϐ
- css:before \03d0
- alert(): \u03d0
- Decimal: ϑ
- Hex: ϑ
- css:before \03d1
- alert(): \u03d1
- Decimal: ϒ
- Hex: ϒ
- css:before \03d2
- alert(): \u03d2
- Decimal: ϓ
- Hex: ϓ
- css:before \03d3
- alert(): \u03d3
- Decimal: ϔ
- Hex: ϔ
- css:before \03d4
- alert(): \u03d4
- Decimal: ϕ
- Hex: ϕ
- css:before \03d5
- alert(): \u03d5
- Decimal: ϖ
- Hex: ϖ
- css:before \03d6
- alert(): \u03d6
Símbolos matemáticos
¹ | ² | ³ | ¼ | ½ | ¾ | ∀ |
∁ | ∂ | ∃ | ∄ | ∅ | ∆ | ∇ |
∈ | ∉ | ∊ | ∋ | ∌ | ∍ | ∎ |
∏ | ∐ | ∑ | − | ∓ | ∔ | ∕ |
∖ | ∗ | ∘ | ∙ | √ | ∛ | ∜ |
∝ | ∞ | ∟ | ∠ | ∡ | ∢ | ∣ |
∤ | ∥ | ∦ | ∧ | ∨ | ∩ | ∪ |
∫ | ∬ | ∭ | ∮ | ∯ | ∰ | ∱ |
∲ | ∳ | ∴ | ∵ | ∶ | ∷ | ∸ |
∹ | ∺ | ∻ | ∼ | ∽ | ∾ | ∿ |
≀ | ≁ | ≂ | ≃ | ≄ | ≅ | ≆ |
≇ | ≈ | ≉ | ≊ | ≋ | ≌ | ≍ |
≎ | ≏ | ≐ | ≑ | ≒ | ≓ | ≔ |
≕ | ≖ | ≗ | ≘ | ≙ | ≚ | ≛ |
≜ | ≝ | ≞ | ≟ | ≠ | ≡ | ≢ |
≣ | ≤ | ≥ | ≦ | ≧ | ≨ | ≩ |
≪ | ≫ | ≬ | ≭ | ≮ | ≯ | ≰ |
≱ | ≲ | ≳ | ≴ | ≵ | ≶ | ≷ |
≸ | ≹ | ≺ | ≻ | ≼ | ≽ | ≾ |
≿ | ⊀ | ⊁ | ⊂ | ⊃ | ⊄ | ⊅ |
⊆ | ⊇ | ⊈ | ⊉ | ⊊ | ⊋ | ⊌ |
⊍ | ⊎ | ⊏ | ⊐ | ⊑ | ⊒ | ⊓ |
⊔ | ⊕ | ⊖ | ⊗ | ⊘ | ⊙ | ⊚ |
⊛ | ⊜ | ⊝ | ⊞ | ⊟ | ⊠ | ⊡ |
⊢ | ⊣ | ⊤ | ⊥ | ⊦ | ⊧ | ⊨ |
⊩ | ⊪ | ⊫ | ⊬ | ⊭ | ⊮ | ⊯ |
⊰ | ⊱ | ⊲ | ⊳ | ⊴ | ⊵ | ⊶ |
⊷ | ⊸ | ⊹ | ⊺ | ⊻ | ⊼ | ⊽ |
⊾ | ⊿ | ⋀ | ⋁ | ⋂ | ⋃ | ⋄ |
⋅ |
- Decimal: ¹
- Hex: ¹
- css:before \0b9
- alert(): \271
- Decimal: ²
- Hex: ²
- css:before \0b2
- alert(): \262
- Decimal: ³
- Hex: ³
- css:before \0b3
- alert(): \263
- Decimal: ¼
- Hex: ¼
- css:before \0bc
- alert(): \274
- Decimal: ½
- Hex: ½
- css:before \0bd
- alert(): \275
- Decimal: ¾
- Hex: ¾
- css:before \0be
- alert(): \276
- Decimal: ∀
- Hex: ∀
- css:before \02200
- alert(): \u2200
- Decimal: ∁
- Hex: ∁
- css:before \02201
- alert(): \u2201
- Decimal: ∂
- Hex: ∂
- css:before \02202
- alert(): \u2202
- Decimal: ∃
- Hex: ∃
- css:before \02203
- alert(): \u2203
- Decimal: ∄
- Hex: ∄
- css:before \02204
- alert(): \u2204
- Decimal: ∅
- Hex: ∅
- css:before \02205
- alert(): \u2205
- Decimal: ∆
- Hex: ∆
- css:before \02206
- alert(): \u2206
- Decimal: ∇
- Hex: ∇
- css:before \02207
- alert(): \u2207
- Decimal: ∈
- Hex: ∈
- css:before \02208
- alert(): \u2208
- Decimal: ∉
- Hex: ∉
- css:before \02209
- alert(): \u2209
- Decimal: ∊
- Hex: ∊
- css:before \0220a
- alert(): \u220a
- Decimal: ∋
- Hex: ∋
- css:before \0220b
- alert(): \u220b
- Decimal: ∌
- Hex: ∌
- css:before \0220c
- alert(): \u220c
- Decimal: ∍
- Hex: ∍
- css:before \0220d
- alert(): \u220d
- Decimal: ∎
- Hex: ∎
- css:before \0220e
- alert(): \u220e
- Decimal: ∏
- Hex: ∏
- css:before \0220f
- alert(): \u220f
- Decimal: ∐
- Hex: ∐
- css:before \02210
- alert(): \u2210
- Decimal: ∑
- Hex: ∑
- css:before \02211
- alert(): \u2211
- Decimal: −
- Hex: −
- css:before \02212
- alert(): \u2212
- Decimal: ∓
- Hex: ∓
- css:before \02213
- alert(): \u2213
- Decimal: ∔
- Hex: ∔
- css:before \02214
- alert(): \u2214
- Decimal: ∕
- Hex: ∕
- css:before \02215
- alert(): \u2215
- Decimal: ∖
- Hex: ∖
- css:before \02216
- alert(): \u2216
- Decimal: ∗
- Hex: ∗
- css:before \02217
- alert(): \u2217
- Decimal: ∘
- Hex: ∘
- css:before \02218
- alert(): \u2218
- Decimal: ∙
- Hex: ∙
- css:before \02219
- alert(): \u2219
- Decimal: √
- Hex: √
- css:before \0221a
- alert(): \u221a
- Decimal: ∛
- Hex: ∛
- css:before \0221b
- alert(): \u221b
- Decimal: ∜
- Hex: ∜
- css:before \0221c
- alert(): \u221c
- Decimal: ∝
- Hex: ∝
- css:before \0221d
- alert(): \u221d
- Decimal: ∞
- Hex: ∞
- css:before \0221e
- alert(): \u221e
- Decimal: ∟
- Hex: ∟
- css:before \0221f
- alert(): \u221f
- Decimal: ∠
- Hex: ∠
- css:before \02220
- alert(): \u2220
- Decimal: ∡
- Hex: ∡
- css:before \02221
- alert(): \u2221
- Decimal: ∢
- Hex: ∢
- css:before \02222
- alert(): \u2222
- Decimal: ∣
- Hex: ∣
- css:before \02223
- alert(): \u2223
- Decimal: ∤
- Hex: ∤
- css:before \02224
- alert(): \u2224
- Decimal: ∥
- Hex: ∥
- css:before \02225
- alert(): \u2225
- Decimal: ∦
- Hex: ∦
- css:before \02226
- alert(): \u2226
- Decimal: ∧
- Hex: ∧
- css:before \02227
- alert(): \u2227
- Decimal: ∨
- Hex: ∨
- css:before \02228
- alert(): \u2228
- Decimal: ∩
- Hex: ∩
- css:before \02229
- alert(): \u2229
- Decimal: ∪
- Hex: ∪
- css:before \0222a
- alert(): \u222a
- Decimal: ∫
- Hex: ∫
- css:before \0222b
- alert(): \u222b
- Decimal: ∬
- Hex: ∬
- css:before \0222c
- alert(): \u222c
- Decimal: ∭
- Hex: ∭
- css:before \0222d
- alert(): \u222d
- Decimal: ∮
- Hex: ∮
- css:before \0222e
- alert(): \u222e
- Decimal: ∯
- Hex: ∯
- css:before \0222f
- alert(): \u222f
- Decimal: ∰
- Hex: ∰
- css:before \02230
- alert(): \u2230
- Decimal: ∱
- Hex: ∱
- css:before \02231
- alert(): \u2231
- Decimal: ∲
- Hex: ∲
- css:before \02232
- alert(): \u2232
- Decimal: ∳
- Hex: ∳
- css:before \02233
- alert(): \u2233
- Decimal: ∴
- Hex: ∴
- css:before \02234
- alert(): \u2234
- Decimal: ∵
- Hex: ∵
- css:before \02235
- alert(): \u2235
- Decimal: ∶
- Hex: ∶
- css:before \02236
- alert(): \u2236
- Decimal: ∷
- Hex: ∷
- css:before \02237
- alert(): \u2237
- Decimal: ∸
- Hex: ∸
- css:before \02238
- alert(): \u2238
- Decimal: ∹
- Hex: ∹
- css:before \02239
- alert(): \u2239
- Decimal: ∺
- Hex: ∺
- css:before \0223a
- alert(): \u223a
- Decimal: ∻
- Hex: ∻
- css:before \0223b
- alert(): \u223b
- Decimal: ∼
- Hex: ∼
- css:before \0223c
- alert(): \u223c
- Decimal: ∽
- Hex: ∽
- css:before \0223d
- alert(): \u223d
- Decimal: ∾
- Hex: ∾
- css:before \0223e
- alert(): \u223e
- Decimal: ∿
- Hex: ∿
- css:before \0223f
- alert(): \u223f
- Decimal: ≀
- Hex: ≀
- css:before \02240
- alert(): \u2240
- Decimal: ≁
- Hex: ≁
- css:before \02241
- alert(): \u2241
- Decimal: ≂
- Hex: ≂
- css:before \02242
- alert(): \u2242
- Decimal: ≃
- Hex: ≃
- css:before \02243
- alert(): \u2243
- Decimal: ≄
- Hex: ≄
- css:before \02244
- alert(): \u2244
- Decimal: ≅
- Hex: ≅
- css:before \02245
- alert(): \u2245
- Decimal: ≆
- Hex: ≆
- css:before \02246
- alert(): \u2246
- Decimal: ≇
- Hex: ≇
- css:before \02247
- alert(): \u2247
- Decimal: ≈
- Hex: ≈
- css:before \02248
- alert(): \u2248
- Decimal: ≉
- Hex: ≉
- css:before \02249
- alert(): \u2249
- Decimal: ≊
- Hex: ≊
- css:before \0224a
- alert(): \u224a
- Decimal: ≋
- Hex: ≋
- css:before \0224b
- alert(): \u224b
- Decimal: ≌
- Hex: ≌
- css:before \0224c
- alert(): \u224c
- Decimal: ≍
- Hex: ≍
- css:before \0224d
- alert(): \u224d
- Decimal: ≎
- Hex: ≎
- css:before \0224e
- alert(): \u224e
- Decimal: ≏
- Hex: ≏
- css:before \0224f
- alert(): \u224f
- Decimal: ≐
- Hex: ≐
- css:before \02250
- alert(): \u2250
- Decimal: ≑
- Hex: ≑
- css:before \02251
- alert(): \u2251
- Decimal: ≒
- Hex: ≒
- css:before \02252
- alert(): \u2252
- Decimal: ≓
- Hex: ≓
- css:before \02253
- alert(): \u2253
- Decimal: ≔
- Hex: ≔
- css:before \02254
- alert(): \u2254
- Decimal: ≕
- Hex: ≕
- css:before \02255
- alert(): \u2255
- Decimal: ≖
- Hex: ≖
- css:before \02256
- alert(): \u2256
- Decimal: ≗
- Hex: ≗
- css:before \02257
- alert(): \u2257
- Decimal: ≘
- Hex: ≘
- css:before \02258
- alert(): \u2258
- Decimal: ≙
- Hex: ≙
- css:before \02259
- alert(): \u2259
- Decimal: ≚
- Hex: ≚
- css:before \0225a
- alert(): \u225a
- Decimal: ≛
- Hex: ≛
- css:before \0225b
- alert(): \u225b
- Decimal: ≜
- Hex: ≜
- css:before \0225c
- alert(): \u225c
- Decimal: ≝
- Hex: ≝
- css:before \0225d
- alert(): \u225d
- Decimal: ≞
- Hex: ≞
- css:before \0225e
- alert(): \u225e
- Decimal: ≟
- Hex: ≟
- css:before \0225f
- alert(): \u225f
- Decimal: ≠
- Hex: ≠
- css:before \02260
- alert(): \u2260
- Decimal: ≡
- Hex: ≡
- css:before \02261
- alert(): \u2261
- Decimal: ≢
- Hex: ≢
- css:before \02262
- alert(): \u2262
- Decimal: ≣
- Hex: ≣
- css:before \02263
- alert(): \u2263
- Decimal: ≤
- Hex: ≤
- css:before \02264
- alert(): \u2264
- Decimal: ≥
- Hex: ≥
- css:before \02265
- alert(): \u2265
- Decimal: ≦
- Hex: ≦
- css:before \02266
- alert(): \u2266
- Decimal: ≧
- Hex: ≧
- css:before \02267
- alert(): \u2267
- Decimal: ≨
- Hex: ≨
- css:before \02268
- alert(): \u2268
- Decimal: ≩
- Hex: ≩
- css:before \02269
- alert(): \u2269
- Decimal: ≪
- Hex: ≪
- css:before \0226a
- alert(): \u226a
- Decimal: ≫
- Hex: ≫
- css:before \0226b
- alert(): \u226b
- Decimal: ≬
- Hex: ≬
- css:before \0226c
- alert(): \u226c
- Decimal: ≭
- Hex: ≭
- css:before \0226d
- alert(): \u226d
- Decimal: ≮
- Hex: ≮
- css:before \0226e
- alert(): \u226e
- Decimal: ≯
- Hex: ≯
- css:before \0226f
- alert(): \u226f
- Decimal: ≰
- Hex: ≰
- css:before \02270
- alert(): \u2270
- Decimal: ≱
- Hex: ≱
- css:before \02271
- alert(): \u2271
- Decimal: ≲
- Hex: ≲
- css:before \02272
- alert(): \u2272
- Decimal: ≳
- Hex: ≳
- css:before \02273
- alert(): \u2273
- Decimal: ≴
- Hex: ≴
- css:before \02274
- alert(): \u2274
- Decimal: ≵
- Hex: ≵
- css:before \02275
- alert(): \u2275
- Decimal: ≶
- Hex: ≶
- css:before \02276
- alert(): \u2276
- Decimal: ≷
- Hex: ≷
- css:before \02277
- alert(): \u2277
- Decimal: ≸
- Hex: ≸
- css:before \02278
- alert(): \u2278
- Decimal: ≹
- Hex: ≹
- css:before \02279
- alert(): \u2279
- Decimal: ≺
- Hex: ≺
- css:before \0227a
- alert(): \u227a
- Decimal: ≻
- Hex: ≻
- css:before \0227b
- alert(): \u227b
- Decimal: ≼
- Hex: ≼
- css:before \0227c
- alert(): \u227c
- Decimal: ≽
- Hex: ≽
- css:before \0227d
- alert(): \u227d
- Decimal: ≾
- Hex: ≾
- css:before \0227e
- alert(): \u227e
- Decimal: ≿
- Hex: ≿
- css:before \0227f
- alert(): \u227f
- Decimal: ⊀
- Hex: ⊀
- css:before \02280
- alert(): \u2280
- Decimal: ⊁
- Hex: ⊁
- css:before \02281
- alert(): \u2281
- Decimal: ⊂
- Hex: ⊂
- css:before \02282
- alert(): \u2282
- Decimal: ⊃
- Hex: ⊃
- css:before \02283
- alert(): \u2283
- Decimal: ⊄
- Hex: ⊄
- css:before \02284
- alert(): \u2284
- Decimal: ⊅
- Hex: ⊅
- css:before \02285
- alert(): \u2285
- Decimal: ⊆
- Hex: ⊆
- css:before \02286
- alert(): \u2286
- Decimal: ⊇
- Hex: ⊇
- css:before \02287
- alert(): \u2287
- Decimal: ⊈
- Hex: ⊈
- css:before \02288
- alert(): \u2288
- Decimal: ⊉
- Hex: ⊉
- css:before \02289
- alert(): \u2289
- Decimal: ⊊
- Hex: ⊊
- css:before \0228a
- alert(): \u228a
- Decimal: ⊋
- Hex: ⊋
- css:before \0228b
- alert(): \u228b
- Decimal: ⊌
- Hex: ⊌
- css:before \0228c
- alert(): \u228c
- Decimal: ⊍
- Hex: ⊍
- css:before \0228d
- alert(): \u228d
- Decimal: ⊎
- Hex: ⊎
- css:before \0228e
- alert(): \u228e
- Decimal: ⊏
- Hex: ⊏
- css:before \0228f
- alert(): \u228f
- Decimal: ⊐
- Hex: ⊐
- css:before \02290
- alert(): \u2290
- Decimal: ⊑
- Hex: ⊑
- css:before \02291
- alert(): \u2291
- Decimal: ⊒
- Hex: ⊒
- css:before \02292
- alert(): \u2292
- Decimal: ⊓
- Hex: ⊓
- css:before \02293
- alert(): \u2293
- Decimal: ⊔
- Hex: ⊔
- css:before \02294
- alert(): \u2294
- Decimal: ⊕
- Hex: ⊕
- css:before \02295
- alert(): \u2295
- Decimal: ⊖
- Hex: ⊖
- css:before \02296
- alert(): \u2296
- Decimal: ⊗
- Hex: ⊗
- css:before \02297
- alert(): \u2297
- Decimal: ⊘
- Hex: ⊘
- css:before \02298
- alert(): \u2298
- Decimal: ⊙
- Hex: ⊙
- css:before \02299
- alert(): \u2299
- Decimal: ⊚
- Hex: ⊚
- css:before \0229a
- alert(): \u229a
- Decimal: ⊛
- Hex: ⊛
- css:before \0229b
- alert(): \u229b
- Decimal: ⊜
- Hex: ⊜
- css:before \0229c
- alert(): \u229c
- Decimal: ⊝
- Hex: ⊝
- css:before \0229d
- alert(): \u229d
- Decimal: ⊞
- Hex: ⊞
- css:before \0229e
- alert(): \u229e
- Decimal: ⊟
- Hex: ⊟
- css:before \0229f
- alert(): \u229f
- Decimal: ⊠
- Hex: ⊠
- css:before \022a0
- alert(): \u22a0
- Decimal: ⊡
- Hex: ⊡
- css:before \022a1
- alert(): \u22a1
- Decimal: ⊢
- Hex: ⊢
- css:before \022a2
- alert(): \u22a2
- Decimal: ⊣
- Hex: ⊣
- css:before \022a3
- alert(): \u22a3
- Decimal: ⊤
- Hex: ⊤
- css:before \022a4
- alert(): \u22a4
- Decimal: ⊥
- Hex: ⊥
- css:before \022a5
- alert(): \u22a5
- Decimal: ⊦
- Hex: ⊦
- css:before \022a6
- alert(): \u22a6
- Decimal: ⊧
- Hex: ⊧
- css:before \022a7
- alert(): \u22a7
- Decimal: ⊨
- Hex: ⊨
- css:before \022a8
- alert(): \u22a8
- Decimal: ⊩
- Hex: ⊩
- css:before \022a9
- alert(): \u22a9
- Decimal: ⊪
- Hex: ⊪
- css:before \022aa
- alert(): \u22aa
- Decimal: ⊫
- Hex: ⊫
- css:before \022ab
- alert(): \u22ab
- Decimal: ⊬
- Hex: ⊬
- css:before \022ac
- alert(): \u22ac
- Decimal: ⊭
- Hex: ⊭
- css:before \022ad
- alert(): \u22ad
- Decimal: ⊮
- Hex: ⊮
- css:before \022ae
- alert(): \u22ae
- Decimal: ⊯
- Hex: ⊯
- css:before \022af
- alert(): \u22af
- Decimal: ⊰
- Hex: ⊰
- css:before \022b0
- alert(): \u22b0
- Decimal: ⊱
- Hex: ⊱
- css:before \022b1
- alert(): \u22b1
- Decimal: ⊲
- Hex: ⊲
- css:before \022b2
- alert(): \u22b2
- Decimal: ⊳
- Hex: ⊳
- css:before \022b3
- alert(): \u22b3
- Decimal: ⊴
- Hex: ⊴
- css:before \022b4
- alert(): \u22b4
- Decimal: ⊵
- Hex: ⊵
- css:before \022b5
- alert(): \u22b5
- Decimal: ⊶
- Hex: ⊶
- css:before \022b6
- alert(): \u22b6
- Decimal: ⊷
- Hex: ⊷
- css:before \022b7
- alert(): \u22b7
- Decimal: ⊸
- Hex: ⊸
- css:before \022b8
- alert(): \u22b8
- Decimal: ⊹
- Hex: ⊹
- css:before \022b9
- alert(): \u22b9
- Decimal: ⊺
- Hex: ⊺
- css:before \022ba
- alert(): \u22ba
- Decimal: ⊻
- Hex: ⊻
- css:before \022bb
- alert(): \u22bb
- Decimal: ⊼
- Hex: ⊼
- css:before \022bc
- alert(): \u22bc
- Decimal: ⊽
- Hex: ⊽
- css:before \022bd
- alert(): \u22bd
- Decimal: ⊾
- Hex: ⊾
- css:before \022be
- alert(): \u22be
- Decimal: ⊿
- Hex: ⊿
- css:before \022bf
- alert(): \u22bf
- Decimal: ⋀
- Hex: ⋀
- css:before \022c0
- alert(): \u22c0
- Decimal: ⋁
- Hex: ⋁
- css:before \022c1
- alert(): \u22c1
- Decimal: ⋂
- Hex: ⋂
- css:before \022c2
- alert(): \u22c2
- Decimal: ⋃
- Hex: ⋃
- css:before \022c3
- alert(): \u22c3
- Decimal: ⋄
- Hex: ⋄
- css:before \022c4
- alert(): \u22c4
- Decimal: ⋅
- Hex: ⋅
- css:before \022c5
- alert(): \u22c5
Misceláneo
‰ | ‱ | ℑ | № | ℜ | ⌂ | ⌗ |
⌘ | ⌚ | ⌥ | ⌦ | ⌧ | ⌨ | ⏏ |
☎ | ☏ | ☠ | ☢ | ☪ | ☭ | ☯ |
☰ | ♀ | ♂ | ♿ | ⚐ | ⚑ | ⚒ |
⚓ | ⚖ | ⎈ | ⚔ | ⚕ | ⚠ | ⚡ |
⚽ | ⚾ | ✂ | ✃ | ✄ | ✆ | ✈ |
✉ | ✍ | ✎ | ✏ | ✐ | ✑ | ✒ |
✓ | ✔ | ✕ | ✖ | ✗ | ✘ | ❛ |
❜ | ❞ | ❤ |
- Decimal: ‰
- Hex: ‰
- css:before \02030
- alert(): \u2030
- Decimal: ‱
- Hex: ‱
- css:before \02031
- alert(): \u2031
- Decimal: ℑ
- Hex: ℑ
- css:before \02111
- alert(): \u2111
- Decimal: №
- Hex: №
- css:before \02116
- alert(): \u2116
- Decimal: ℜ
- Hex: ℜ
- css:before \0211c
- alert(): \u211c
- Decimal: ⌂
- Hex: ⌂
- css:before \02302
- alert(): \u2302
- Decimal: ⌗
- Hex: ⌗
- css:before \02317
- alert(): \u2317
- Decimal: ⌘
- Hex: ⌘
- css:before \02318
- alert(): \u2318
- Decimal: ⌚
- Hex: ⌚
- css:before \0231a
- alert(): \u231a
- Decimal: ⌥
- Hex: ⌥
- css:before \02325
- alert(): \u2325
- Decimal: ⌦
- Hex: ⌦
- css:before \02326
- alert(): \u2326
- Decimal: ⌧
- Hex: ⌧
- css:before \02327
- alert(): \u2327
- Decimal: ⌨
- Hex: ⌨
- css:before \02328
- alert(): \u2328
- Decimal: ⏏
- Hex: ⏏
- css:before \023cf
- alert(): \u23cf
- Decimal: ☎
- Hex: ☎
- css:before \0260e
- alert(): \u260e
- Decimal: ☏
- Hex: ☏
- css:before \0260f
- alert(): \u260f
- Decimal: ☠
- Hex: ☠
- css:before \02620
- alert(): \u2620
- Decimal: ☢
- Hex: ☢
- css:before \02622
- alert(): \u2622
- Decimal: ☪
- Hex: ☪
- css:before \0262a
- alert(): \u262a
- Decimal: ☭
- Hex: ☭
- css:before \0262d
- alert(): \u262d
- Decimal: ☯
- Hex: ☯
- css:before \0262f
- alert(): \u262f
- Decimal: ☰
- Hex: ☰
- css:before \02630
- alert(): \u2630
- Decimal: ♀
- Hex: ♀
- css:before \02640
- alert(): \u2640
- Decimal: ♂
- Hex: ♂
- css:before \02642
- alert(): \u2642
- Decimal: ♿
- Hex: ♿
- css:before \0267f
- alert(): \u267f
- Decimal: ⚐
- Hex: ⚐
- css:before \02690
- alert(): \u2690
- Decimal: ⚑
- Hex: ⚑
- css:before \02691
- alert(): \u2691
- Decimal: ⚒
- Hex: ⚒
- css:before \02692
- alert(): \u2692
- Decimal: ⚓
- Hex: ⚓
- css:before \02693
- alert(): \u2693
- Decimal: ⚖
- Hex: ⚖
- css:before \02696
- alert(): \u2696
- Decimal: ⎈
- Hex: ⎈
- css:before \02388
- alert(): \u2388
- Decimal: ⚔
- Hex: ⚔
- css:before \02694
- alert(): \u2694
- Decimal: ⚕
- Hex: ⚕
- css:before \02695
- alert(): \u2695
- Decimal: ⚠
- Hex: ⚠
- css:before \026a0
- alert(): \u26a0
- Decimal: ⚡
- Hex: ⚡
- css:before \026a1
- alert(): \u26a1
- Decimal: ⚽
- Hex: ⚽
- css:before \026bd
- alert(): \u26bd
- Decimal: ⚾
- Hex: ⚾
- css:before \026be
- alert(): \u26be
- Decimal: ✂
- Hex: ✂
- css:before \02702
- alert(): \u2702
- Decimal: ✃
- Hex: ✃
- css:before \02703
- alert(): \u2703
- Decimal: ✄
- Hex: ✄
- css:before \02704
- alert(): \u2704
- Decimal: ✆
- Hex: ✆
- css:before \02706
- alert(): \u2706
- Decimal: ✈
- Hex: ✈
- css:before \02708
- alert(): \u2708
- Decimal: ✉
- Hex: ✉
- css:before \02709
- alert(): \u2709
- Decimal: ✍
- Hex: ✍
- css:before \0270d
- alert(): \u270d
- Decimal: ✎
- Hex: ✎
- css:before \0270e
- alert(): \u270e
- Decimal: ✏
- Hex: ✏
- css:before \0270f
- alert(): \u270f
- Decimal: ✐
- Hex: ✐
- css:before \02710
- alert(): \u2710
- Decimal: ✑
- Hex: ✑
- css:before \02711
- alert(): \u2711
- Decimal: ✒
- Hex: ✒
- css:before \02712
- alert(): \u2712
- Decimal: ✓
- Hex: ✓
- css:before \02713
- alert(): \u2713
- Decimal: ✔
- Hex: ✔
- css:before \02714
- alert(): \u2714
- Decimal: ✕
- Hex: ✕
- css:before \02715
- alert(): \u2715
- Decimal: ✖
- Hex: ✖
- css:before \02716
- alert(): \u2716
- Decimal: ✗
- Hex: ✗
- css:before \02717
- alert(): \u2717
- Decimal: ✘
- Hex: ✘
- css:before \02718
- alert(): \u2718
- Decimal: ❛
- Hex: ❛
- css:before \0275b
- alert(): \u275b
- Decimal: ❜
- Hex: ❜
- css:before \0275c
- alert(): \u275c
- Decimal: ❞
- Hex: ❞
- css:before \0275e
- alert(): \u275e
- Decimal: ❤
- Hex: ❤
- css:before \02764
- alert(): \u2764
IPA (International Phonetic Alphabet)
æ | ç | ð | ø | ħ | ŋ | œ |
ǀ | ǁ | ǂ | ǃ | ɐ | ɑ | ɒ |
ɓ | ɔ | ɕ | ɖ | ɗ | ɘ | ə |
ɚ | ɛ | ɜ | ɝ | ɞ | ɟ | ɠ |
ɡ | ɢ | ɣ | ɤ | ɥ | ɦ | ɧ |
ɨ | ɪ | ɫ | ɬ | ɭ | ɮ | ɯ |
ɰ | ɱ | ɲ | ɳ | ɴ | ɵ | ɶ |
ɸ | ɹ | ɺ | ɻ | ɽ | ɾ | ʀ |
ʁ | ʂ | ʃ | ʄ | ʈ | ʉ | ʊ |
ʋ | ʌ | ʎ | ʏ | ʐ | ʑ | ʒ |
ʔ | ʕ | ʘ | ʙ | ʛ | ʜ | ʝ |
ʟ | ʡ | ʢ | ʤ | ʧ | ʰ | ʱ |
ʲ | ʴ | ʷ | ʼ | ˈ | ˌ | ː |
ˑ | ˞ | ˠ | ˤ | β | θ | χ |
↑ | → | ↓ | ↗ | ↘ | ⱱ |
- Decimal: æ
- Hex: æ
- css:before \0e6
- alert(): \346
- Decimal: ç
- Hex: ç
- css:before \0e7
- alert(): \347
- Decimal: ð
- Hex: ð
- css:before \0f0
- alert(): \360
- Decimal: ø
- Hex: ø
- css:before \0f8
- alert(): \370
- Decimal: ħ
- Hex: ħ
- css:before \0127
- alert(): \u0127
- Decimal: ŋ
- Hex: ŋ
- css:before \014b
- alert(): \u014b
- Decimal: œ
- Hex: œ
- css:before \0153
- alert(): \u0153
- Decimal: ǀ
- Hex: ǀ
- css:before \01c0
- alert(): \u01c0
- Decimal: ǁ
- Hex: ǁ
- css:before \01c1
- alert(): \u01c1
- Decimal: ǂ
- Hex: ǂ
- css:before \01c2
- alert(): \u01c2
- Decimal: ǃ
- Hex: ǃ
- css:before \01c3
- alert(): \u01c3
- Decimal: ɐ
- Hex: ɐ
- css:before \0250
- alert(): \u0250
- Decimal: ɑ
- Hex: ɑ
- css:before \0251
- alert(): \u0251
- Decimal: ɒ
- Hex: ɒ
- css:before \0252
- alert(): \u0252
- Decimal: ɓ
- Hex: ɓ
- css:before \0253
- alert(): \u0253
- Decimal: ɔ
- Hex: ɔ
- css:before \0254
- alert(): \u0254
- Decimal: ɕ
- Hex: ɕ
- css:before \0255
- alert(): \u0255
- Decimal: ɖ
- Hex: ɖ
- css:before \0256
- alert(): \u0256
- Decimal: ɗ
- Hex: ɗ
- css:before \0257
- alert(): \u0257
- Decimal: ɘ
- Hex: ɘ
- css:before \0258
- alert(): \u0258
- Decimal: ə
- Hex: ə
- css:before \0259
- alert(): \u0259
- Decimal: ɚ
- Hex: ɚ
- css:before \025a
- alert(): \u025a
- Decimal: ɛ
- Hex: ɛ
- css:before \025b
- alert(): \u025b
- Decimal: ɜ
- Hex: ɜ
- css:before \025c
- alert(): \u025c
- Decimal: ɝ
- Hex: ɝ
- css:before \025d
- alert(): \u025d
- Decimal: ɞ
- Hex: ɞ
- css:before \025e
- alert(): \u025e
- Decimal: ɟ
- Hex: ɟ
- css:before \025f
- alert(): \u025f
- Decimal: ɠ
- Hex: ɠ
- css:before \0260
- alert(): \u0260
- Decimal: ɡ
- Hex: ɡ
- css:before \0261
- alert(): \u0261
- Decimal: ɢ
- Hex: ɢ
- css:before \0262
- alert(): \u0262
- Decimal: ɣ
- Hex: ɣ
- css:before \0263
- alert(): \u0263
- Decimal: ɤ
- Hex: ɤ
- css:before \0264
- alert(): \u0264
- Decimal: ɥ
- Hex: ɥ
- css:before \0265
- alert(): \u0265
- Decimal: ɦ
- Hex: ɦ
- css:before \0266
- alert(): \u0266
- Decimal: ɧ
- Hex: ɧ
- css:before \0267
- alert(): \u0267
- Decimal: ɨ
- Hex: ɨ
- css:before \0268
- alert(): \u0268
- Decimal: ɪ
- Hex: ɪ
- css:before \026a
- alert(): \u026a
- Decimal: ɫ
- Hex: ɫ
- css:before \026b
- alert(): \u026b
- Decimal: ɬ
- Hex: ɬ
- css:before \026c
- alert(): \u026c
- Decimal: ɭ
- Hex: ɭ
- css:before \026d
- alert(): \u026d
- Decimal: ɮ
- Hex: ɮ
- css:before \026e
- alert(): \u026e
- Decimal: ɯ
- Hex: ɯ
- css:before \026f
- alert(): \u026f
- Decimal: ɰ
- Hex: ɰ
- css:before \0270
- alert(): \u0270
- Decimal: ɱ
- Hex: ɱ
- css:before \0271
- alert(): \u0271
- Decimal: ɲ
- Hex: ɲ
- css:before \0272
- alert(): \u0272
- Decimal: ɳ
- Hex: ɳ
- css:before \0273
- alert(): \u0273
- Decimal: ɴ
- Hex: ɴ
- css:before \0274
- alert(): \u0274
- Decimal: ɵ
- Hex: ɵ
- css:before \0275
- alert(): \u0275
- Decimal: ɶ
- Hex: ɶ
- css:before \0276
- alert(): \u0276
- Decimal: ɸ
- Hex: ɸ
- css:before \0278
- alert(): \u0278
- Decimal: ɹ
- Hex: ɹ
- css:before \0279
- alert(): \u0279
- Decimal: ɺ
- Hex: ɺ
- css:before \027a
- alert(): \u027a
- Decimal: ɻ
- Hex: ɻ
- css:before \027b
- alert(): \u027b
- Decimal: ɽ
- Hex: ɽ
- css:before \027d
- alert(): \u027d
- Decimal: ɾ
- Hex: ɾ
- css:before \027e
- alert(): \u027e
- Decimal: ʀ
- Hex: ʀ
- css:before \0280
- alert(): \u0280
- Decimal: ʁ
- Hex: ʁ
- css:before \0281
- alert(): \u0281
- Decimal: ʂ
- Hex: ʂ
- css:before \0282
- alert(): \u0282
- Decimal: ʃ
- Hex: ʃ
- css:before \0283
- alert(): \u0283
- Decimal: ʄ
- Hex: ʄ
- css:before \0284
- alert(): \u0284
- Decimal: ʈ
- Hex: ʈ
- css:before \0288
- alert(): \u0288
- Decimal: ʉ
- Hex: ʉ
- css:before \0289
- alert(): \u0289
- Decimal: ʊ
- Hex: ʊ
- css:before \028a
- alert(): \u028a
- Decimal: ʋ
- Hex: ʋ
- css:before \028b
- alert(): \u028b
- Decimal: ʌ
- Hex: ʌ
- css:before \028c
- alert(): \u028c
- Decimal: ʎ
- Hex: ʎ
- css:before \028e
- alert(): \u028e
- Decimal: ʏ
- Hex: ʏ
- css:before \028f
- alert(): \u028f
- Decimal: ʐ
- Hex: ʐ
- css:before \0290
- alert(): \u0290
- Decimal: ʑ
- Hex: ʑ
- css:before \0291
- alert(): \u0291
- Decimal: ʒ
- Hex: ʒ
- css:before \0292
- alert(): \u0292
- Decimal: ʔ
- Hex: ʔ
- css:before \0294
- alert(): \u0294
- Decimal: ʕ
- Hex: ʕ
- css:before \0295
- alert(): \u0295
- Decimal: ʘ
- Hex: ʘ
- css:before \0298
- alert(): \u0298
- Decimal: ʙ
- Hex: ʙ
- css:before \0299
- alert(): \u0299
- Decimal: ʛ
- Hex: ʛ
- css:before \029b
- alert(): \u029b
- Decimal: ʜ
- Hex: ʜ
- css:before \029c
- alert(): \u029c
- Decimal: ʝ
- Hex: ʝ
- css:before \029d
- alert(): \u029d
- Decimal: ʟ
- Hex: ʟ
- css:before \029f
- alert(): \u029f
- Decimal: ʡ
- Hex: ʡ
- css:before \02a1
- alert(): \u02a1
- Decimal: ʢ
- Hex: ʢ
- css:before \02a2
- alert(): \u02a2
- Decimal: ʤ
- Hex: ʤ
- css:before \02a4
- alert(): \u02a4
- Decimal: ʧ
- Hex: ʧ
- css:before \02a7
- alert(): \u02a7
- Decimal: ʰ
- Hex: ʰ
- css:before \02b0
- alert(): \u02b0
- Decimal: ʱ
- Hex: ʱ
- css:before \02b1
- alert(): \u02b1
- Decimal: ʲ
- Hex: ʲ
- css:before \02b2
- alert(): \u02b2
- Decimal: ʴ
- Hex: ʴ
- css:before \02b4
- alert(): \u02b4
- Decimal: ʷ
- Hex: ʷ
- css:before \02b7
- alert(): \u02b7
- Decimal: ʼ
- Hex: ʼ
- css:before \02bc
- alert(): \u02bc
- Decimal: ˈ
- Hex: ˈ
- css:before \02c8
- alert(): \u02c8
- Decimal: ˌ
- Hex: ˌ
- css:before \02cc
- alert(): \u02cc
- Decimal: ː
- Hex: ː
- css:before \02d0
- alert(): \u02d0
- Decimal: ˑ
- Hex: ˑ
- css:before \02d1
- alert(): \u02d1
- Decimal: ˞
- Hex: ˞
- css:before \02de
- alert(): \u02de
- Decimal: ˠ
- Hex: ˠ
- css:before \02e0
- alert(): \u02e0
- Decimal: ˤ
- Hex: ˤ
- css:before \02e4
- alert(): \u02e4
- Decimal: β
- Hex: β
- css:before \03b2
- alert(): \u03b2
- Decimal: θ
- Hex: θ
- css:before \03b8
- alert(): \u03b8
- Decimal: χ
- Hex: χ
- css:before \03c7
- alert(): \u03c7
- Decimal: ↑
- Hex: ↑
- css:before \02191
- alert(): \u2191
- Decimal: →
- Hex: →
- css:before \02192
- alert(): \u2192
- Decimal: ↓
- Hex: ↓
- css:before \02193
- alert(): \u2193
- Decimal: ↗
- Hex: ↗
- css:before \02197
- alert(): \u2197
- Decimal: ↘
- Hex: ↘
- css:before \02198
- alert(): \u2198
- Decimal: ⱱ
- Hex: ⱱ
- css:before \02c71
- alert(): \u2c71
Divisas
€ | $ | ¢ | £ | ¤ | ¥ | ƒ |
৲ | ৳ | ૱ | ௹ | ฿ | ៛ | ₠ |
₡ | ₢ | ₣ | ₤ | ₥ | ₦ | ₧ |
₨ | ₩ | ₪ | ₫ | ₭ | ₮ | ₯ |
₰ | ₱ | ₲ | ₳ | ₴ | ₵ | ₶ |
₷ | ₹ | ㍐ | 元 | 円 | 圆 | 圎 |
圓 | 圜 | ﷼ | $ | ¢ | £ | ¥ |
₩ |
- Decimal: €
- Hex: €
- css:before \020ac
- alert(): \u20ac
- Decimal: $
- Hex: $
- css:before \024
- alert(): \44
- Decimal: ¢
- Hex: ¢
- css:before \0a2
- alert(): \242
- Decimal: £
- Hex: £
- css:before \0a3
- alert(): \243
- Decimal: ¤
- Hex: ¤
- css:before \0a4
- alert(): \244
- Decimal: ¥
- Hex: ¥
- css:before \0a5
- alert(): \245
- Decimal: ƒ
- Hex: ƒ
- css:before \0192
- alert(): \u0192
- Decimal: ৲
- Hex: ৲
- css:before \09f2
- alert(): \u09f2
- Decimal: ৳
- Hex: ৳
- css:before \09f3
- alert(): \u09f3
- Decimal: ૱
- Hex: ૱
- css:before \0af1
- alert(): \u0af1
- Decimal: ௹
- Hex: ௹
- css:before \0bf9
- alert(): \u0bf9
- Decimal: ฿
- Hex: ฿
- css:before \0e3f
- alert(): \u0e3f
- Decimal: ៛
- Hex: ៛
- css:before \017db
- alert(): \u017db
- Decimal: ₠
- Hex: ₠
- css:before \020a0
- alert(): \u20a0
- Decimal: ₡
- Hex: ₡
- css:before \020a1
- alert(): \u20a1
- Decimal: ₢
- Hex: ₢
- css:before \020a2
- alert(): \u20a2
- Decimal: ₣
- Hex: ₣
- css:before \020a3
- alert(): \u20a3
- Decimal: ₤
- Hex: ₤
- css:before \020a4
- alert(): \u20a4
- Decimal: ₥
- Hex: ₥
- css:before \020a5
- alert(): \u20a5
- Decimal: ₦
- Hex: ₦
- css:before \020a6
- alert(): \u20a6
- Decimal: ₧
- Hex: ₧
- css:before \020a7
- alert(): \u20a7
- Decimal: ₨
- Hex: ₨
- css:before \020a8
- alert(): \u20a8
- Decimal: ₩
- Hex: ₩
- css:before \020a9
- alert(): \u20a9
- Decimal: ₪
- Hex: ₪
- css:before \020aa
- alert(): \u20aa
- Decimal: ₫
- Hex: ₫
- css:before \020ab
- alert(): \u20ab
- Decimal: ₭
- Hex: ₭
- css:before \020ad
- alert(): \u20ad
- Decimal: ₮
- Hex: ₮
- css:before \020ae
- alert(): \u20ae
- Decimal: ₯
- Hex: ₯
- css:before \020af
- alert(): \u20af
- Decimal: ₰
- Hex: ₰
- css:before \020b0
- alert(): \u20b0
- Decimal: ₱
- Hex: ₱
- css:before \020b1
- alert(): \u20b1
- Decimal: ₲
- Hex: ₲
- css:before \020b2
- alert(): \u20b2
- Decimal: ₳
- Hex: ₳
- css:before \020b3
- alert(): \u20b3
- Decimal: ₴
- Hex: ₴
- css:before \020b4
- alert(): \u20b4
- Decimal: ₵
- Hex: ₵
- css:before \020b5
- alert(): \u20b5
- Decimal: ₶
- Hex: ₶
- css:before \020b6
- alert(): \u20b6
- Decimal: ₷
- Hex: ₷
- css:before \020b7
- alert(): \u20b7
- Decimal: ₹
- Hex: ₹
- css:before \020b9
- alert(): \u20b9
- Decimal: ㍐
- Hex: ㍐
- css:before \03350
- alert(): \u3350
- Decimal: 元
- Hex: 元
- css:before \05143
- alert(): \u5143
- Decimal: 円
- Hex: 円
- css:before \05186
- alert(): \u5186
- Decimal: 圆
- Hex: 圆
- css:before \05706
- alert(): \u5706
- Decimal: 圎
- Hex: 圎
- css:before \0570e
- alert(): \u570e
- Decimal: 圓
- Hex: 圓
- css:before \05713
- alert(): \u5713
- Decimal: 圜
- Hex: 圜
- css:before \0571c
- alert(): \u571c
- Decimal: ﷼
- Hex: ﷼
- css:before \0fdfc
- alert(): \ufdfc
- Decimal: $
- Hex: $
- css:before \0ff04
- alert(): \uff04
- Decimal: ¢
- Hex: ¢
- css:before \0ffe0
- alert(): \uffe0
- Decimal: £
- Hex: £
- css:before \0ffe1
- alert(): \uffe1
- Decimal: ¥
- Hex: ¥
- css:before \0ffe5
- alert(): \uffe5
- Decimal: ₩
- Hex: ₩
- css:before \0ffe6
- alert(): \uffe6
Manos
☚ | ☛ | ☜ | ☝ | ☞ | ☟ | ✍ |
- Decimal: ☚
- Hex: ☚
- css:before \0261a
- alert(): \u261a
- Decimal: ☛
- Hex: ☛
- css:before \0261b
- alert(): \u261b
- Decimal: ☜
- Hex: ☜
- css:before \0261c
- alert(): \u261c
- Decimal: ☝
- Hex: ☝
- css:before \0261d
- alert(): \u261d
- Decimal: ☞
- Hex: ☞
- css:before \0261e
- alert(): \u261e
- Decimal: ☟
- Hex: ☟
- css:before \0261f
- alert(): \u261f
- Decimal: ✍
- Hex: ✍
- css:before \0270d
- alert(): \u270d
Reciclar
♲ | ♳ | ♴ | ♵ | ♶ | ♷ | ♸ |
♹ | ♺ | ♻ | ♼ | ♽ |
- Decimal: ♲
- Hex: ♲
- css:before \02672
- alert(): \u2672
- Decimal: ♳
- Hex: ♳
- css:before \02673
- alert(): \u2673
- Decimal: ♴
- Hex: ♴
- css:before \02674
- alert(): \u2674
- Decimal: ♵
- Hex: ♵
- css:before \02675
- alert(): \u2675
- Decimal: ♶
- Hex: ♶
- css:before \02676
- alert(): \u2676
- Decimal: ♷
- Hex: ♷
- css:before \02677
- alert(): \u2677
- Decimal: ♸
- Hex: ♸
- css:before \02678
- alert(): \u2678
- Decimal: ♹
- Hex: ♹
- css:before \02679
- alert(): \u2679
- Decimal: ♺
- Hex: ♺
- css:before \0267a
- alert(): \u267a
- Decimal: ♻
- Hex: ♻
- css:before \0267b
- alert(): \u267b
- Decimal: ♼
- Hex: ♼
- css:before \0267c
- alert(): \u267c
- Decimal: ♽
- Hex: ♽
- css:before \0267d
- alert(): \u267d
Ajedrez
♔ | ♕ | ♖ | ♗ | ♘ | ♙ | ♚ |
♛ | ♜ | ♝ | ♞ | ♟ |
- Decimal: ♔
- Hex: ♔
- css:before \02654
- alert(): \u2654
- Decimal: ♕
- Hex: ♕
- css:before \02655
- alert(): \u2655
- Decimal: ♖
- Hex: ♖
- css:before \02656
- alert(): \u2656
- Decimal: ♗
- Hex: ♗
- css:before \02657
- alert(): \u2657
- Decimal: ♘
- Hex: ♘
- css:before \02658
- alert(): \u2658
- Decimal: ♙
- Hex: ♙
- css:before \02659
- alert(): \u2659
- Decimal: ♚
- Hex: ♚
- css:before \0265a
- alert(): \u265a
- Decimal: ♛
- Hex: ♛
- css:before \0265b
- alert(): \u265b
- Decimal: ♜
- Hex: ♜
- css:before \0265c
- alert(): \u265c
- Decimal: ♝
- Hex: ♝
- css:before \0265d
- alert(): \u265d
- Decimal: ♞
- Hex: ♞
- css:before \0265e
- alert(): \u265e
- Decimal: ♟
- Hex: ♟
- css:before \0265f
- alert(): \u265f
Naipes
♠ | ♡ | ♢ | ♣ | ♤ | ♥ | ♦ |
♧ |
- Decimal: ♠
- Hex: ♠
- css:before \02660
- alert(): \u2660
- Decimal: ♡
- Hex: ♡
- css:before \02661
- alert(): \u2661
- Decimal: ♢
- Hex: ♢
- css:before \02662
- alert(): \u2662
- Decimal: ♣
- Hex: ♣
- css:before \02663
- alert(): \u2663
- Decimal: ♤
- Hex: ♤
- css:before \02664
- alert(): \u2664
- Decimal: ♥
- Hex: ♥
- css:before \02665
- alert(): \u2665
- Decimal: ♦
- Hex: ♦
- css:before \02666
- alert(): \u2666
- Decimal: ♧
- Hex: ♧
- css:before \02667
- alert(): \u2667
Notas musicales
♩ | ♪ | ♫ | ♬ | ♭ | ♮ | ♯ |
- Decimal: ♩
- Hex: ♩
- css:before \02669
- alert(): \u2669
- Decimal: ♪
- Hex: ♪
- css:before \0266a
- alert(): \u266a
- Decimal: ♫
- Hex: ♫
- css:before \0266b
- alert(): \u266b
- Decimal: ♬
- Hex: ♬
- css:before \0266c
- alert(): \u266c
- Decimal: ♭
- Hex: ♭
- css:before \0266d
- alert(): \u266d
- Decimal: ♮
- Hex: ♮
- css:before \0266e
- alert(): \u266e
- Decimal: ♯
- Hex: ♯
- css:before \0266f
- alert(): \u266f
Meteo
☀ | ☁ | ☂ | ☃ | ☄ | ★ | ☆ |
☇ | ☈ | ☉ | ☸ | ☹ | ☺ | ☻ |
☼ | ☽ | ☾ |
- Decimal: ☀
- Hex: ☀
- css:before \02600
- alert(): \u2600
- Decimal: ☁
- Hex: ☁
- css:before \02601
- alert(): \u2601
- Decimal: ☂
- Hex: ☂
- css:before \02602
- alert(): \u2602
- Decimal: ☃
- Hex: ☃
- css:before \02603
- alert(): \u2603
- Decimal: ☄
- Hex: ☄
- css:before \02604
- alert(): \u2604
- Decimal: ★
- Hex: ★
- css:before \02605
- alert(): \u2605
- Decimal: ☆
- Hex: ☆
- css:before \02606
- alert(): \u2606
- Decimal: ☇
- Hex: ☇
- css:before \02607
- alert(): \u2607
- Decimal: ☈
- Hex: ☈
- css:before \02608
- alert(): \u2608
- Decimal: ☉
- Hex: ☉
- css:before \02609
- alert(): \u2609
- Decimal: ☸
- Hex: ☸
- css:before \02638
- alert(): \u2638
- Decimal: ☹
- Hex: ☹
- css:before \02639
- alert(): \u2639
- Decimal: ☺
- Hex: ☺
- css:before \0263a
- alert(): \u263a
- Decimal: ☻
- Hex: ☻
- css:before \0263b
- alert(): \u263b
- Decimal: ☼
- Hex: ☼
- css:before \0263c
- alert(): \u263c
- Decimal: ☽
- Hex: ☽
- css:before \0263d
- alert(): \u263d
- Decimal: ☾
- Hex: ☾
- css:before \0263e
- alert(): \u263e
Zodiaco
♈ | ♉ | ♊ | ♋ | ♌ | ♍ | ♎ |
♏ | ♐ | ♑ | ♒ | ♓ |
- Decimal: ♈
- Hex: ♈
- css:before \02648
- alert(): \u2648
- Decimal: ♉
- Hex: ♉
- css:before \02649
- alert(): \u2649
- Decimal: ♊
- Hex: ♊
- css:before \0264a
- alert(): \u264a
- Decimal: ♋
- Hex: ♋
- css:before \0264b
- alert(): \u264b
- Decimal: ♌
- Hex: ♌
- css:before \0264c
- alert(): \u264c
- Decimal: ♍
- Hex: ♍
- css:before \0264d
- alert(): \u264d
- Decimal: ♎
- Hex: ♎
- css:before \0264e
- alert(): \u264e
- Decimal: ♏
- Hex: ♏
- css:before \0264f
- alert(): \u264f
- Decimal: ♐
- Hex: ♐
- css:before \02650
- alert(): \u2650
- Decimal: ♑
- Hex: ♑
- css:before \02651
- alert(): \u2651
- Decimal: ♒
- Hex: ♒
- css:before \02652
- alert(): \u2652
- Decimal: ♓
- Hex: ♓
- css:before \02653
- alert(): \u2653
Cruces
☥ | ☦ | ☧ | ☨ | ☩ | ☪ | ✙ |
✚ | ✛ | ✜ | ✝ | ✞ | ✟ | ✠ |
- Decimal: ☥
- Hex: ☥
- css:before \02625
- alert(): \u2625
- Decimal: ☦
- Hex: ☦
- css:before \02626
- alert(): \u2626
- Decimal: ☧
- Hex: ☧
- css:before \02627
- alert(): \u2627
- Decimal: ☨
- Hex: ☨
- css:before \02628
- alert(): \u2628
- Decimal: ☩
- Hex: ☩
- css:before \02629
- alert(): \u2629
- Decimal: ☪
- Hex: ☪
- css:before \0262a
- alert(): \u262a
- Decimal: ✙
- Hex: ✙
- css:before \02719
- alert(): \u2719
- Decimal: ✚
- Hex: ✚
- css:before \0271a
- alert(): \u271a
- Decimal: ✛
- Hex: ✛
- css:before \0271b
- alert(): \u271b
- Decimal: ✜
- Hex: ✜
- css:before \0271c
- alert(): \u271c
- Decimal: ✝
- Hex: ✝
- css:before \0271d
- alert(): \u271d
- Decimal: ✞
- Hex: ✞
- css:before \0271e
- alert(): \u271e
- Decimal: ✟
- Hex: ✟
- css:before \0271f
- alert(): \u271f
- Decimal: ✠
- Hex: ✠
- css:before \02720
- alert(): \u2720
Estrellas
✡ | ✢ | ✣ | ✤ | ✥ | ✦ | ✧ |
✨ | ✩ | ✪ | ✫ | ✬ | ✭ | ✮ |
✯ | ✰ | ✱ | ✲ | ✳ | ✴ | ✵ |
✶ | ✷ | ✸ | ✹ | ✺ | ✻ | ✼ |
✽ | ✾ | ✿ | ❀ | ❁ | ❂ | ❃ |
❄ | ❅ | ❆ | ❇ | ❈ | ❉ | ❊ |
❋ |
- Decimal: ✡
- Hex: ✡
- css:before \02721
- alert(): \u2721
- Decimal: ✢
- Hex: ✢
- css:before \02722
- alert(): \u2722
- Decimal: ✣
- Hex: ✣
- css:before \02723
- alert(): \u2723
- Decimal: ✤
- Hex: ✤
- css:before \02724
- alert(): \u2724
- Decimal: ✥
- Hex: ✥
- css:before \02725
- alert(): \u2725
- Decimal: ✦
- Hex: ✦
- css:before \02726
- alert(): \u2726
- Decimal: ✧
- Hex: ✧
- css:before \02727
- alert(): \u2727
- Decimal: ✨
- Hex: ✨
- css:before \02728
- alert(): \u2728
- Decimal: ✩
- Hex: ✩
- css:before \02729
- alert(): \u2729
- Decimal: ✪
- Hex: ✪
- css:before \0272a
- alert(): \u272a
- Decimal: ✫
- Hex: ✫
- css:before \0272b
- alert(): \u272b
- Decimal: ✬
- Hex: ✬
- css:before \0272c
- alert(): \u272c
- Decimal: ✭
- Hex: ✭
- css:before \0272d
- alert(): \u272d
- Decimal: ✮
- Hex: ✮
- css:before \0272e
- alert(): \u272e
- Decimal: ✯
- Hex: ✯
- css:before \0272f
- alert(): \u272f
- Decimal: ✰
- Hex: ✰
- css:before \02730
- alert(): \u2730
- Decimal: ✱
- Hex: ✱
- css:before \02731
- alert(): \u2731
- Decimal: ✲
- Hex: ✲
- css:before \02732
- alert(): \u2732
- Decimal: ✳
- Hex: ✳
- css:before \02733
- alert(): \u2733
- Decimal: ✴
- Hex: ✴
- css:before \02734
- alert(): \u2734
- Decimal: ✵
- Hex: ✵
- css:before \02735
- alert(): \u2735
- Decimal: ✶
- Hex: ✶
- css:before \02736
- alert(): \u2736
- Decimal: ✷
- Hex: ✷
- css:before \02737
- alert(): \u2737
- Decimal: ✸
- Hex: ✸
- css:before \02738
- alert(): \u2738
- Decimal: ✹
- Hex: ✹
- css:before \02739
- alert(): \u2739
- Decimal: ✺
- Hex: ✺
- css:before \0273a
- alert(): \u273a
- Decimal: ✻
- Hex: ✻
- css:before \0273b
- alert(): \u273b
- Decimal: ✼
- Hex: ✼
- css:before \0273c
- alert(): \u273c
- Decimal: ✽
- Hex: ✽
- css:before \0273d
- alert(): \u273d
- Decimal: ✾
- Hex: ✾
- css:before \0273e
- alert(): \u273e
- Decimal: ✿
- Hex: ✿
- css:before \0273f
- alert(): \u273f
- Decimal: ❀
- Hex: ❀
- css:before \02740
- alert(): \u2740
- Decimal: ❁
- Hex: ❁
- css:before \02741
- alert(): \u2741
- Decimal: ❂
- Hex: ❂
- css:before \02742
- alert(): \u2742
- Decimal: ❃
- Hex: ❃
- css:before \02743
- alert(): \u2743
- Decimal: ❄
- Hex: ❄
- css:before \02744
- alert(): \u2744
- Decimal: ❅
- Hex: ❅
- css:before \02745
- alert(): \u2745
- Decimal: ❆
- Hex: ❆
- css:before \02746
- alert(): \u2746
- Decimal: ❇
- Hex: ❇
- css:before \02747
- alert(): \u2747
- Decimal: ❈
- Hex: ❈
- css:before \02748
- alert(): \u2748
- Decimal: ❉
- Hex: ❉
- css:before \02749
- alert(): \u2749
- Decimal: ❊
- Hex: ❊
- css:before \0274a
- alert(): \u274a
- Decimal: ❋
- Hex: ❋
- css:before \0274b
- alert(): \u274b