copied = false, 2000)"
@keydown.enter="navigator.clipboard.writeText('ໄ'); copied = true; setTimeout(() => copied = false, 2000)"
:class="copied ? 'border-green-400 bg-green-50 dark:bg-green-950' : ''">
ໄ
인코딩 표
| 형식 | 값 | 복사 |
|---|---|---|
| unicode | U+0EC4 | |
| decimal | 3780 | |
| htmldecimal | ໄ | |
| htmlhex | ໄ | |
| css | \0EC4 | |
| javascript | \u{EC4} | |
| python | \u0ec4 | |
| java | \u0EC4 | |
| go | \u0EC4 | |
| ruby | \u{EC4} | |
| rust | \u{EC4} | |
| ccpp | \u0ec4 | |
| urlencoded | %E0%BB%84 | |
| utf8bytes | e0 bb 84 | |
| utf16bebytes | 0e c4 | |
| utf32bebytes | 00 00 0e c4 |
사용 방법
HTML:
ໄ
CSS:
content: "\0EC4"
JavaScript:
"\u{EC4}"
Python:
"\u0ec4"