Unicode Finder

"蝤" U+8764(CJK UNIFIED IDEOGRAPH-8764)

U+8764
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-8764

Programming

C
\u8764
JavaScript
\u8764
Java
\u8764
Json
\u8764
Python
\u8764
Perl
\x{8764}
PHP
\x{8764}
Ruby
\u{8764}
Rust
\u{8764}
Go
\u8764

Web

CSS
\008764
HtmlDecimal
蝤
HtmlHexadecimal
蝤
Url
%E8%9D%A4

Code

MD5
9241d0e4a31b63a8fa246e357f32b6ad
Sha1
e53bee7b8fd5c4008e8e5fad1a55ba95733ff92b
Base64
6J2k

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8764';
console.log(char);  // Output: 蝤

Java:

char c = '\u8764';
System.out.println(c);  // Output: 蝤

JSON:

{"text": "\u8764"}  // Value: 蝤

Python:

char = '\u8764'
print(char)  # Output: 蝤

Perl:

my $char = "\x{8764}";
print $char;  # Output: 蝤

PHP:

$char = "\x{8764}";
echo $char;  // Output: 蝤

Ruby:

char = "\u{8764}"
puts char  # Output: 蝤

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008764";  /* Display: 蝤 */
}

HTML Decimal:

<p>HTML decimal: &#34660;</p>  <!-- Display: 蝤 -->

HTML Hexadecimal:

<p>HTML hex: &#x8764;</p>  <!-- Display: 蝤 -->

URL Encoding:

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

Encodings

MD5:

9241d0e4a31b63a8fa246e357f32b6ad

SHA1:

e53bee7b8fd5c4008e8e5fad1a55ba95733ff92b

Base64:

6J2k