Unicode Finder

"蟖" U+87D6(CJK UNIFIED IDEOGRAPH-87D6)

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

Programming

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

Web

CSS
\0087D6
HtmlDecimal
蟖
HtmlHexadecimal
蟖
Url
%E8%9F%96

Code

MD5
90a69b5aaf7a87a5feec891019acc669
Sha1
1c8345a1299311decede2c4794ffd0c4e26d4dea
Base64
6J+W

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u87D6';
console.log(char);  // Output: 蟖

Java:

char c = '\u87D6';
System.out.println(c);  // Output: 蟖

JSON:

{"text": "\u87D6"}  // Value: 蟖

Python:

char = '\u87D6'
print(char)  # Output: 蟖

Perl:

my $char = "\x{87D6}";
print $char;  # Output: 蟖

PHP:

$char = "\x{87D6}";
echo $char;  // Output: 蟖

Ruby:

char = "\u{87D6}"
puts char  # Output: 蟖

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34774;</p>  <!-- Display: 蟖 -->

HTML Hexadecimal:

<p>HTML hex: &#x87D6;</p>  <!-- Display: 蟖 -->

URL Encoding:

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

Encodings

MD5:

90a69b5aaf7a87a5feec891019acc669

SHA1:

1c8345a1299311decede2c4794ffd0c4e26d4dea

Base64:

6J+W