Unicode Finder

"蝿" U+877F(CJK UNIFIED IDEOGRAPH-877F)

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

Programming

C
\u877F
JavaScript
\u877F
Java
\u877F
Json
\u877F
Python
\u877F
Perl
\x{877F}
PHP
\x{877F}
Ruby
\u{877F}
Rust
\u{877F}
Go
\u877F

Web

CSS
\00877F
HtmlDecimal
蝿
HtmlHexadecimal
蝿
Url
%E8%9D%BF

Code

MD5
c19636fc363cd91c7b86c3f3a085598e
Sha1
4ae7228862949b05428b0d29130ff0a27b5c0574
Base64
6J2/

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u877F';
console.log(char);  // Output: 蝿

Java:

char c = '\u877F';
System.out.println(c);  // Output: 蝿

JSON:

{"text": "\u877F"}  // Value: 蝿

Python:

char = '\u877F'
print(char)  # Output: 蝿

Perl:

my $char = "\x{877F}";
print $char;  # Output: 蝿

PHP:

$char = "\x{877F}";
echo $char;  // Output: 蝿

Ruby:

char = "\u{877F}"
puts char  # Output: 蝿

Rust:

let c = '\u{877F}';
println!("{}", c);  // Output: 蝿

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00877F";  /* Display: 蝿 */
}

HTML Decimal:

<p>HTML decimal: &#34687;</p>  <!-- Display: 蝿 -->

HTML Hexadecimal:

<p>HTML hex: &#x877F;</p>  <!-- Display: 蝿 -->

URL Encoding:

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

Encodings

MD5:

c19636fc363cd91c7b86c3f3a085598e

SHA1:

4ae7228862949b05428b0d29130ff0a27b5c0574

Base64:

6J2/