Unicode Finder

"蝠" U+8760(CJK UNIFIED IDEOGRAPH-8760)

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

Programming

C
\u8760
JavaScript
\u8760
Java
\u8760
Json
\u8760
Python
\u8760
Perl
\x{8760}
PHP
\x{8760}
Ruby
\u{8760}
Rust
\u{8760}
Go
\u8760

Web

CSS
\008760
HtmlDecimal
蝠
HtmlHexadecimal
蝠
Url
%E8%9D%A0

Code

MD5
7d39895bdd62d5f56ac61ab0a1542cba
Sha1
6c0cef8c8873558db4ed933025bd5120ad5d2daf
Base64
6J2g

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8760';
console.log(char);  // Output: 蝠

Java:

char c = '\u8760';
System.out.println(c);  // Output: 蝠

JSON:

{"text": "\u8760"}  // Value: 蝠

Python:

char = '\u8760'
print(char)  # Output: 蝠

Perl:

my $char = "\x{8760}";
print $char;  # Output: 蝠

PHP:

$char = "\x{8760}";
echo $char;  // Output: 蝠

Ruby:

char = "\u{8760}"
puts char  # Output: 蝠

Rust:

let c = '\u{8760}';
println!("{}", c);  // Output: 蝠

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008760";  /* Display: 蝠 */
}

HTML Decimal:

<p>HTML decimal: &#34656;</p>  <!-- Display: 蝠 -->

HTML Hexadecimal:

<p>HTML hex: &#x8760;</p>  <!-- Display: 蝠 -->

URL Encoding:

// 蝠 URL encoding
https://unicodefinder.com/search.php?query=%E8%9D%A0

Encodings

MD5:

7d39895bdd62d5f56ac61ab0a1542cba

SHA1:

6c0cef8c8873558db4ed933025bd5120ad5d2daf

Base64:

6J2g