-
-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add: 033 HTML Symbols * feat: add backtik to nomor dan entitas add backtick for ease of use
- Loading branch information
Showing
1 changed file
with
82 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
# HTML Symbols | ||
|
||
Symbol yang tidak ada di keyboard Anda dapat ditambahkan dengan menggunakan entitas. | ||
|
||
## Entitas HTML Symbols | ||
|
||
Banyak Symbol matematika, teknis, dan mata uang, tidak ada pada keyboard normal. | ||
|
||
Untuk menambahkan simbol tersebut ke halaman HTML, Anda dapat menggunakan nama entitas atau nomor entitas (referensi desimal atau heksadesimal) untuk Symbol tersebut. | ||
|
||
## Contoh | ||
|
||
Tampilkan tanda euro, €, dengan nama entitas, desimal, dan nilai heksadesimal: | ||
|
||
```html | ||
<p>I will display €</p> | ||
<p>I will display €</p> | ||
<p>I will display €</p> | ||
``` | ||
|
||
Hasilnya menjadi: | ||
|
||
```html | ||
I will display € | ||
I will display € | ||
I will display € | ||
``` | ||
|
||
### Beberapa Symbol Matematika yang Didukung oleh HTML | ||
|
||
| Nomor | Char | Nomor | Entitas | Deskripsi | | ||
| :---: | :--: | :-------: | :--------: | :----------------------: | | ||
| 01 | ∀ | `∀` | `∀` | UNTUK SEMUA | | ||
| 02 | ∂ | `∂` | `∂` | DIFERENSIAL PARSIAL | | ||
| 03 | ∃ | `∃` | `∃` | ADA | | ||
| 04 | ∅ | `∅` | `∅` | SET KOSONG | | ||
| 05 | ∇ | `∇` | `∇` | NABLA | | ||
| 06 | ∈ | `∈` | `∈` | ELEMENT DARI | | ||
| 07 | ∉ | `∉` | `∉` | BUKAN ELEMENT DARI | | ||
| 08 | ∋ | `∋` | `∋` | BERISI SEBAGAI ANGGOTA | | ||
| 09 | ∏ | `∏` | `∏` | N-ARY PRODUK | | ||
| 10 | ∑ | `∑` | `∑` | N-ARY JUMLAH | | ||
|
||
[List Symbol Matematika](https://www.w3schools.com/charsets/ref_utf_math.asp) | ||
|
||
### Beberapa Bahasa Yunani yang Didukung oleh HTML | ||
|
||
| Nomor | Char | Nomor | Entitas | Deskripsi | | ||
| :---: | :--: | :------: | :---------: | :--------------------------: | | ||
| 01 | Α | `Α` | `Α` | HURUF BESAR ALPHA YUNANI | | ||
| 02 | Β | `Β` | `Β` | HURUF BESAR BETA YUNANI | | ||
| 03 | Γ | `Γ` | `Γ` | HURUF BESAR GAMMA YUNANI | | ||
| 04 | Δ | `Δ` | `Δ` | HURUF BESAR DELTA YUNANI | | ||
| 05 | Ε | `Ε` | `Ε` | HURUF BESAR EPSILON YUNANI | | ||
| 06 | Ζ | `Ζ` | `Ζ` | HURUF BESAR ZETA YUNANI | | ||
|
||
[List Symbol Huruf Yunani](https://www.w3schools.com/charsets/ref_utf_greek.asp) | ||
|
||
### Beberapa Entitas lain yang Didukung oleh HTML | ||
|
||
| Nomor | Char | Nomor | Entitas | Deskripsi | | ||
| :---: | :--: | :-------: | :--------: | :-----------------: | | ||
| 01 | © | `©` | `©` | TANDA HAK CIPTA | | ||
| 02 | ® | `®` | `®` | TANDA TERDAFTAR | | ||
| 03 | € | `€` | `€` | TANDA EURO | | ||
| 04 | ™ | `™` | `™` | MEREK DAGANG | | ||
| 05 | ← | `←` | `←` | PANAH KIRI | | ||
| 06 | ↑ | `↑` | `↑` | PANAH ATAS | | ||
| 07 | → | `→` | `→` | PANAH KANAN | | ||
| 08 | ↓ | `↓` | `↓` | PANAH BAWAH | | ||
| 09 | ♠ | `♠` | `♠` | SPADE HITAM | | ||
| 10 | ♣ | `♣` | `♣` | CLUB HITAM | | ||
| 11 | ♥ | `♥` | `♥` | HEART HITAM | | ||
| 12 | ♦ | `♦` | `♦` | DIAMOND HITAM | | ||
|
||
[List Symbol Mata Uang](https://www.w3schools.com/charsets/ref_utf_currency.asp) | ||
|
||
[List Symbol Panah](https://www.w3schools.com/charsets/ref_utf_arrows.asp) | ||
|
||
[List Symbol](https://www.w3schools.com/charsets/ref_utf_symbols.asp) | ||
|
||
Sumber: [w3schools](https://www.w3schools.com/html/html_symbols.asp) |