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+04DE | |
| decimal | 1246 | |
| htmldecimal | Ӟ | |
| htmlhex | Ӟ | |
| css | \04DE | |
| javascript | \u{4DE} | |
| python | \u04de | |
| java | \u04DE | |
| go | \u04DE | |
| ruby | \u{4DE} | |
| rust | \u{4DE} | |
| ccpp | \u04de | |
| urlencoded | %D3%9E | |
| utf8bytes | d3 9e | |
| utf16bebytes | 04 de | |
| utf32bebytes | 00 00 04 de |
使用方法
HTML:
Ӟ
CSS:
content: "\04DE"
JavaScript:
"\u{4DE}"
Python:
"\u04de"