Unicode Finder

"蟋" U+87CB(CJK UNIFIED IDEOGRAPH-87CB)

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

Programming

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

Web

CSS
\0087CB
HtmlDecimal
蟋
HtmlHexadecimal
蟋
Url
%E8%9F%8B

Code

MD5
f9f29436a1eb47e06a5c87fcea827bba
Sha1
64a943eeae8dc5ca66160f19143b7fed4dded1bc
Base64
6J+L

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u87CB';
console.log(char);  // Output: 蟋

Java:

char c = '\u87CB';
System.out.println(c);  // Output: 蟋

JSON:

{"text": "\u87CB"}  // Value: 蟋

Python:

char = '\u87CB'
print(char)  # Output: 蟋

Perl:

my $char = "\x{87CB}";
print $char;  # Output: 蟋

PHP:

$char = "\x{87CB}";
echo $char;  // Output: 蟋

Ruby:

char = "\u{87CB}"
puts char  # Output: 蟋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34763;</p>  <!-- Display: 蟋 -->

HTML Hexadecimal:

<p>HTML hex: &#x87CB;</p>  <!-- Display: 蟋 -->

URL Encoding:

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

Encodings

MD5:

f9f29436a1eb47e06a5c87fcea827bba

SHA1:

64a943eeae8dc5ca66160f19143b7fed4dded1bc

Base64:

6J+L