Unicode Finder

"癁" U+7641(CJK UNIFIED IDEOGRAPH-7641)

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

Programming

C
\u7641
JavaScript
\u7641
Java
\u7641
Json
\u7641
Python
\u7641
Perl
\x{7641}
PHP
\x{7641}
Ruby
\u{7641}
Rust
\u{7641}
Go
\u7641

Web

CSS
\007641
HtmlDecimal
癁
HtmlHexadecimal
癁
Url
%E7%99%81

Code

MD5
11216eb9b860274ae0e8aa2818d5046c
Sha1
1fa2f876503237492d905e2855c5b4b19ea0a546
Base64
55mB

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7641';
console.log(char);  // Output: 癁

Java:

char c = '\u7641';
System.out.println(c);  // Output: 癁

JSON:

{"text": "\u7641"}  // Value: 癁

Python:

char = '\u7641'
print(char)  # Output: 癁

Perl:

my $char = "\x{7641}";
print $char;  # Output: 癁

PHP:

$char = "\x{7641}";
echo $char;  // Output: 癁

Ruby:

char = "\u{7641}"
puts char  # Output: 癁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007641";  /* Display: 癁 */
}

HTML Decimal:

<p>HTML decimal: &#30273;</p>  <!-- Display: 癁 -->

HTML Hexadecimal:

<p>HTML hex: &#x7641;</p>  <!-- Display: 癁 -->

URL Encoding:

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

Encodings

MD5:

11216eb9b860274ae0e8aa2818d5046c

SHA1:

1fa2f876503237492d905e2855c5b4b19ea0a546

Base64:

55mB