Unicode Finder

"蝅" U+8745(CJK UNIFIED IDEOGRAPH-8745)

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

Programming

C
\u8745
JavaScript
\u8745
Java
\u8745
Json
\u8745
Python
\u8745
Perl
\x{8745}
PHP
\x{8745}
Ruby
\u{8745}
Rust
\u{8745}
Go
\u8745

Web

CSS
\008745
HtmlDecimal
蝅
HtmlHexadecimal
蝅
Url
%E8%9D%85

Code

MD5
541c551a49dda3c137ef192ed92d72dc
Sha1
f76fc00c3070818efb665f09d75f6e46936b3220
Base64
6J2F

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8745';
console.log(char);  // Output: 蝅

Java:

char c = '\u8745';
System.out.println(c);  // Output: 蝅

JSON:

{"text": "\u8745"}  // Value: 蝅

Python:

char = '\u8745'
print(char)  # Output: 蝅

Perl:

my $char = "\x{8745}";
print $char;  # Output: 蝅

PHP:

$char = "\x{8745}";
echo $char;  // Output: 蝅

Ruby:

char = "\u{8745}"
puts char  # Output: 蝅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008745";  /* Display: 蝅 */
}

HTML Decimal:

<p>HTML decimal: &#34629;</p>  <!-- Display: 蝅 -->

HTML Hexadecimal:

<p>HTML hex: &#x8745;</p>  <!-- Display: 蝅 -->

URL Encoding:

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

Encodings

MD5:

541c551a49dda3c137ef192ed92d72dc

SHA1:

f76fc00c3070818efb665f09d75f6e46936b3220

Base64:

6J2F