Unicode Finder

"蟎" U+87CE(CJK UNIFIED IDEOGRAPH-87CE)

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

Programming

C
\u87CE
JavaScript
\u87CE
Java
\u87CE
Json
\u87CE
Python
\u87CE
Perl
\x{87CE}
PHP
\x{87CE}
Ruby
\u{87CE}
Rust
\u{87CE}
Go
\u87CE

Web

CSS
\0087CE
HtmlDecimal
蟎
HtmlHexadecimal
蟎
Url
%E8%9F%8E

Code

MD5
aabfb25f05be0f928ff4828a80c77d54
Sha1
db5f1ebdf243d6a321fce0d51aa2b53807df7139
Base64
6J+O

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u87CE';
console.log(char);  // Output: 蟎

Java:

char c = '\u87CE';
System.out.println(c);  // Output: 蟎

JSON:

{"text": "\u87CE"}  // Value: 蟎

Python:

char = '\u87CE'
print(char)  # Output: 蟎

Perl:

my $char = "\x{87CE}";
print $char;  # Output: 蟎

PHP:

$char = "\x{87CE}";
echo $char;  // Output: 蟎

Ruby:

char = "\u{87CE}"
puts char  # Output: 蟎

Rust:

let c = '\u{87CE}';
println!("{}", c);  // Output: 蟎

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0087CE";  /* Display: 蟎 */
}

HTML Decimal:

<p>HTML decimal: &#34766;</p>  <!-- Display: 蟎 -->

HTML Hexadecimal:

<p>HTML hex: &#x87CE;</p>  <!-- Display: 蟎 -->

URL Encoding:

// 蟎 URL encoding
https://unicodefinder.com/search.php?query=%E8%9F%8E

Encodings

MD5:

aabfb25f05be0f928ff4828a80c77d54

SHA1:

db5f1ebdf243d6a321fce0d51aa2b53807df7139

Base64:

6J+O