Unicode Finder

"蟕" U+87D5(CJK UNIFIED IDEOGRAPH-87D5)

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

Programming

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

Web

CSS
\0087D5
HtmlDecimal
蟕
HtmlHexadecimal
蟕
Url
%E8%9F%95

Code

MD5
82b867c8c900c9d6a3e1ec50233cdeb7
Sha1
c0c6c667d22ccf61a3b8ff951d9bdb077c46ef63
Base64
6J+V

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u87D5';
console.log(char);  // Output: 蟕

Java:

char c = '\u87D5';
System.out.println(c);  // Output: 蟕

JSON:

{"text": "\u87D5"}  // Value: 蟕

Python:

char = '\u87D5'
print(char)  # Output: 蟕

Perl:

my $char = "\x{87D5}";
print $char;  # Output: 蟕

PHP:

$char = "\x{87D5}";
echo $char;  // Output: 蟕

Ruby:

char = "\u{87D5}"
puts char  # Output: 蟕

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34773;</p>  <!-- Display: 蟕 -->

HTML Hexadecimal:

<p>HTML hex: &#x87D5;</p>  <!-- Display: 蟕 -->

URL Encoding:

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

Encodings

MD5:

82b867c8c900c9d6a3e1ec50233cdeb7

SHA1:

c0c6c667d22ccf61a3b8ff951d9bdb077c46ef63

Base64:

6J+V