Unicode Finder

"蟏" U+87CF(CJK UNIFIED IDEOGRAPH-87CF)

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

Programming

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

Web

CSS
\0087CF
HtmlDecimal
蟏
HtmlHexadecimal
蟏
Url
%E8%9F%8F

Code

MD5
9cd7db7944cbe620aa60643b856f838f
Sha1
d0295034cf0dc668574ce6d31c17ab0888487389
Base64
6J+P

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u87CF';
console.log(char);  // Output: 蟏

Java:

char c = '\u87CF';
System.out.println(c);  // Output: 蟏

JSON:

{"text": "\u87CF"}  // Value: 蟏

Python:

char = '\u87CF'
print(char)  # Output: 蟏

Perl:

my $char = "\x{87CF}";
print $char;  # Output: 蟏

PHP:

$char = "\x{87CF}";
echo $char;  // Output: 蟏

Ruby:

char = "\u{87CF}"
puts char  # Output: 蟏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34767;</p>  <!-- Display: 蟏 -->

HTML Hexadecimal:

<p>HTML hex: &#x87CF;</p>  <!-- Display: 蟏 -->

URL Encoding:

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

Encodings

MD5:

9cd7db7944cbe620aa60643b856f838f

SHA1:

d0295034cf0dc668574ce6d31c17ab0888487389

Base64:

6J+P