Unicode Finder

"癉" U+7649(CJK UNIFIED IDEOGRAPH-7649)

U+7649
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-7649

Programming

C
\u7649
JavaScript
\u7649
Java
\u7649
Json
\u7649
Python
\u7649
Perl
\x{7649}
PHP
\x{7649}
Ruby
\u{7649}
Rust
\u{7649}
Go
\u7649

Web

CSS
\007649
HtmlDecimal
癉
HtmlHexadecimal
癉
Url
%E7%99%89

Code

MD5
c487844a62bfc157220f1d71f966d0e1
Sha1
8b621248a4ecb5a2614226722f8ce1603f00aecd
Base64
55mJ

使用範例

Programming Languages

C:

char c = '\u7649';
printf("%c\n", c);  // Output: 癉

JavaScript:

const char = '\u7649';
console.log(char);  // Output: 癉

Java:

char c = '\u7649';
System.out.println(c);  // Output: 癉

JSON:

{"text": "\u7649"}  // Value: 癉

Python:

char = '\u7649'
print(char)  # Output: 癉

Perl:

my $char = "\x{7649}";
print $char;  # Output: 癉

PHP:

$char = "\x{7649}";
echo $char;  // Output: 癉

Ruby:

char = "\u{7649}"
puts char  # Output: 癉

Rust:

let c = '\u{7649}';
println!("{}", c);  // Output: 癉

Go:

char := '\u7649'
fmt.Printf("%c\n", char)  // Output: 癉

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007649";  /* Display: 癉 */
}

HTML Decimal:

<p>HTML decimal: &#30281;</p>  <!-- Display: 癉 -->

HTML Hexadecimal:

<p>HTML hex: &#x7649;</p>  <!-- Display: 癉 -->

URL Encoding:

// 癉 URL encoding
https://unicodefinder.com/search.php?query=%E7%99%89

Encodings

MD5:

c487844a62bfc157220f1d71f966d0e1

SHA1:

8b621248a4ecb5a2614226722f8ce1603f00aecd

Base64:

55mJ