Unicode Finder

"蟆" U+87C6(CJK UNIFIED IDEOGRAPH-87C6)

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

Programming

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

Web

CSS
\0087C6
HtmlDecimal
蟆
HtmlHexadecimal
蟆
Url
%E8%9F%86

Code

MD5
a9247b9a6e823d69b5abd31f04b1d12a
Sha1
a761c28dc176b36d2fcb30239d56cd8c4c966792
Base64
6J+G

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u87C6';
console.log(char);  // Output: 蟆

Java:

char c = '\u87C6';
System.out.println(c);  // Output: 蟆

JSON:

{"text": "\u87C6"}  // Value: 蟆

Python:

char = '\u87C6'
print(char)  # Output: 蟆

Perl:

my $char = "\x{87C6}";
print $char;  # Output: 蟆

PHP:

$char = "\x{87C6}";
echo $char;  // Output: 蟆

Ruby:

char = "\u{87C6}"
puts char  # Output: 蟆

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34758;</p>  <!-- Display: 蟆 -->

HTML Hexadecimal:

<p>HTML hex: &#x87C6;</p>  <!-- Display: 蟆 -->

URL Encoding:

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

Encodings

MD5:

a9247b9a6e823d69b5abd31f04b1d12a

SHA1:

a761c28dc176b36d2fcb30239d56cd8c4c966792

Base64:

6J+G