Unicode Finder

"蝡" U+8761(CJK UNIFIED IDEOGRAPH-8761)

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

Programming

C
\u8761
JavaScript
\u8761
Java
\u8761
Json
\u8761
Python
\u8761
Perl
\x{8761}
PHP
\x{8761}
Ruby
\u{8761}
Rust
\u{8761}
Go
\u8761

Web

CSS
\008761
HtmlDecimal
蝡
HtmlHexadecimal
蝡
Url
%E8%9D%A1

Code

MD5
ac2bf5c55873ef0272f1a3781e6eb53b
Sha1
3d8ae4ef6061903002335d7969f45e697b79266f
Base64
6J2h

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8761';
console.log(char);  // Output: 蝡

Java:

char c = '\u8761';
System.out.println(c);  // Output: 蝡

JSON:

{"text": "\u8761"}  // Value: 蝡

Python:

char = '\u8761'
print(char)  # Output: 蝡

Perl:

my $char = "\x{8761}";
print $char;  # Output: 蝡

PHP:

$char = "\x{8761}";
echo $char;  // Output: 蝡

Ruby:

char = "\u{8761}"
puts char  # Output: 蝡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008761";  /* Display: 蝡 */
}

HTML Decimal:

<p>HTML decimal: &#34657;</p>  <!-- Display: 蝡 -->

HTML Hexadecimal:

<p>HTML hex: &#x8761;</p>  <!-- Display: 蝡 -->

URL Encoding:

// 蝡 URL encoding
https://unicodefinder.com/search.php?query=%E8%9D%A1

Encodings

MD5:

ac2bf5c55873ef0272f1a3781e6eb53b

SHA1:

3d8ae4ef6061903002335d7969f45e697b79266f

Base64:

6J2h